Package chemaxon.marvin.plugin
Class PluginException
java.lang.Object
java.lang.Throwable
java.lang.Exception
chemaxon.marvin.plugin.PluginException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
PluginInputCheckerException
Exception thrown in case of plugin processing or calculation errors.
Other exceptions raised during plugin processing are wrapped into a
PluginException, so that the caller should catch only PluginException.
The wrapped exception can be accessed by the
getException()
method.- See Also:
-
Constructor Summary
ConstructorDescriptionDefault constructor.PluginException
(String msg) Constructor with message.PluginException
(String msg, Throwable e) Constructor with wrapped exception.Constructor with wrapped exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PluginException
public PluginException()Default constructor. -
PluginException
Constructor with message.- Parameters:
msg
- is the exception message.
-
PluginException
Constructor with wrapped exception.- Parameters:
e
- is the wrapped exception
-
PluginException
Constructor with wrapped exception.- Parameters:
msg
- is the exception message.e
- is the wrapped exception
-
-
Method Details
-
getException
Returns the wrapped exception.- Returns:
- the wrapped exception
-