Class JaxoPluginExecutionException

  • All Implemented Interfaces:
    java.io.Serializable

    public class JaxoPluginExecutionException
    extends java.lang.Exception
    An exception occuring during the execution of a plugin.
    Since:
    2.0
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      JaxoPluginExecutionException​(java.lang.Object source)
      Construct a new JaxoPluginExecutionException exception.
      JaxoPluginExecutionException​(java.lang.String message, java.lang.Object source)
      Construct a new JaxoPluginExecutionException exception with a message.
      JaxoPluginExecutionException​(java.lang.String message, java.lang.Throwable cause, java.lang.Object source)
      Construct a new JaxoPluginExecutionException exception wrapping an underlying Throwable and providing a message.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Object getSource()
      Get the source of the Exception.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • JaxoPluginExecutionException

        public JaxoPluginExecutionException​(java.lang.Object source)
        Construct a new JaxoPluginExecutionException exception.
        Parameters:
        source - the source of the Exception, may be null.
      • JaxoPluginExecutionException

        public JaxoPluginExecutionException​(java.lang.String message,
                                            java.lang.Object source)
        Construct a new JaxoPluginExecutionException exception with a message.
        Parameters:
        message - a message. This could be displayed in error dialogs, so it should be an internationalized string.
        source - the source of the Exception, may be null.
      • JaxoPluginExecutionException

        public JaxoPluginExecutionException​(java.lang.String message,
                                            java.lang.Throwable cause,
                                            java.lang.Object source)
        Construct a new JaxoPluginExecutionException exception wrapping an underlying Throwable and providing a message.
        Parameters:
        message - a message. This could be displayed in error dialogs, so it should be an internationalized string.
        cause - the underlying cause of the Exception.
        source - the source of the Exception, may be null.
    • Method Detail

      • getSource

        public java.lang.Object getSource()
        Get the source of the Exception.
        Returns:
        the source of the Exception, may be null.