Package net.sf.jaxodraw.plugin
Class JaxoPluginExecutionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- net.sf.jaxodraw.plugin.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.
-
-
-
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.
-
-