Package net.shibboleth.idp.module
Class ModuleException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- net.shibboleth.idp.module.ModuleException
-
- All Implemented Interfaces:
Serializable
@ThreadSafe public class ModuleException extends Exception
Module 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 ModuleException()
Constructor.ModuleException(Exception wrappedException)
Constructor.ModuleException(String message)
Constructor.ModuleException(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 Detail
-
serialVersionUID
private static final long serialVersionUID
Serial number.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ModuleException
public ModuleException()
Constructor.
-
ModuleException
public ModuleException(@Nullable String message)
Constructor.- Parameters:
message
- exception message
-
ModuleException
public ModuleException(@Nullable Exception wrappedException)
Constructor.- Parameters:
wrappedException
- exception to be wrapped by this one
-
-