Class PluginException

    • Constructor Detail

      • PluginException

        public PluginException​(String pluginName,
                               int code,
                               String message,
                               Throwable e,
                               Object[] args)
        Deprecated.
        Exception constructor.
        Parameters:
        pluginName - the name of the plugin that triggered the exception
        code - exception code
        message - the exception message
        e - a nested exception that caused this exception in the first place
        args - extra information about the exception
      • PluginException

        public PluginException​(String pluginName,
                               int code,
                               String message,
                               Throwable e)
        Deprecated.
        Exception constructor.
        Parameters:
        pluginName - the name of the plugin that triggered the exception
        code - exception code
        message - the exception message
        e - a nested exception that caused this exception in the first place
      • PluginException

        public PluginException​(String pluginName,
                               int code,
                               String message)
        Deprecated.
        Exception constructor.
        Parameters:
        pluginName - the name of the plugin that triggered the exception
        code - exception code
        message - the exception message
      • PluginException

        public PluginException​(Class<? extends XWikiPluginInterface> plugin,
                               int code,
                               String message,
                               Throwable e,
                               Object[] args)
        Deprecated.
        Exception constructor.
        Parameters:
        plugin - the type of plugin that triggered the exception
        code - exception code
        message - the exception message
        e - a nested exception that caused this exception in the first place
        args - extra information about the exception
      • PluginException

        public PluginException​(Class<? extends XWikiPluginInterface> plugin,
                               int code,
                               String message,
                               Throwable e)
        Deprecated.
        Exception constructor.
        Parameters:
        plugin - the type of plugin that triggered the exception
        code - exception code
        message - the exception message
        e - a nested exception that caused this exception in the first place
      • PluginException

        public PluginException​(Class<? extends XWikiPluginInterface> plugin,
                               int code,
                               String message)
        Deprecated.
        Exception constructor.
        Parameters:
        plugin - the type of plugin that triggered the exception
        code - exception code
        message - the exception message
      • PluginException

        public PluginException()
        Deprecated.
        Empty constructor, with no information provided.
    • Method Detail