Class JaxoPluginExecutionException

java.lang.Object
java.lang.Throwable
java.lang.Exception
net.sf.jaxodraw.plugin.JaxoPluginExecutionException
All Implemented Interfaces:
Serializable

public class JaxoPluginExecutionException extends Exception
An exception occuring during the execution of a plugin.
Since:
2.0
See Also:
  • Constructor Details

    • JaxoPluginExecutionException

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

      public JaxoPluginExecutionException(String message, 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(String message, Throwable cause, 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 Details

    • getSource

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