Class PluginException

  • All Implemented Interfaces:
    Serializable

    public class PluginException
    extends Exception
    General exception class for all code that runs as a plugin in DSpace
    Author:
    Richard Jones
    See Also:
    Serialized Form
    • Constructor Detail

      • PluginException

        public PluginException()
        basic constructor
      • PluginException

        public PluginException​(String message)
        Construct an exception with the passed message
        Parameters:
        message - a message for the exception
      • PluginException

        public PluginException​(String message,
                               Throwable e)
        Construct an exception with the passed message to encapsulate the passed Throwable
        Parameters:
        message - a message for the exception
        e - throwable which triggered this exception
      • PluginException

        public PluginException​(Throwable e)
        Construct an exception to encapsulate the passed Throwable
        Parameters:
        e - the throwable which triggered this exception