Package net.sf.jaxodraw.plugin
Class JaxoPluginExecutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
net.sf.jaxodraw.plugin.JaxoPluginExecutionException
- All Implemented Interfaces:
Serializable
An exception occuring during the execution of a plugin.
- Since:
- 2.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionJaxoPluginExecutionException
(Object source) Construct a new JaxoPluginExecutionException exception.JaxoPluginExecutionException
(String message, Object source) Construct a new JaxoPluginExecutionException exception with a message.JaxoPluginExecutionException
(String message, Throwable cause, Object source) Construct a new JaxoPluginExecutionException exception wrapping an underlying Throwable and providing a message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
JaxoPluginExecutionException
Construct a new JaxoPluginExecutionException exception.- Parameters:
source
- the source of the Exception, may be null.
-
JaxoPluginExecutionException
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
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
Get the source of the Exception.- Returns:
- the source of the Exception, may be null.
-