Package net.shibboleth.idp.plugin
Class PluginException
java.lang.Object
java.lang.Throwable
java.lang.Exception
net.shibboleth.idp.plugin.PluginException
- All Implemented Interfaces:
Serializable
@ThreadSafe public class PluginException extends Exception
Plugin exception class.
- Since:
- 4.1.0
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
Serial number. -
Constructor Summary
Constructors Constructor Description PluginException()
Constructor.PluginException(Exception wrappedException)
Constructor.PluginException(String message)
Constructor.PluginException(String message, Exception wrappedException)
Constructor. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerial number.- See Also:
- Constant Field Values
-
-
Constructor Details
-
PluginException
public PluginException()Constructor. -
PluginException
Constructor.- Parameters:
message
- exception message
-
PluginException
Constructor.- Parameters:
wrappedException
- exception to be wrapped by this one
-
PluginException
Constructor.- Parameters:
message
- exception messagewrappedException
- exception to be wrapped by this one
-