Class UninitializedComponentException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
net.shibboleth.utilities.java.support.component.UninitializedComponentException
- All Implemented Interfaces:
Serializable
public class UninitializedComponentException extends RuntimeException
Exception thrown if a component has not been initialized and needs to be in order to perform the operation.
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
Serial version UID. -
Constructor Summary
Constructors Constructor Description UninitializedComponentException()
Constructor.UninitializedComponentException(Exception wrappedException)
Constructor.UninitializedComponentException(Object uninitializedComponent)
Constructor.UninitializedComponentException(String message)
Constructor.UninitializedComponentException(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 version UID.- See Also:
- Constant Field Values
-
-
Constructor Details
-
UninitializedComponentException
public UninitializedComponentException()Constructor. -
UninitializedComponentException
Constructor. This method constructs the exception message by prepending the output ofObject.toString()
to the stringhas not been initialized
.- Parameters:
uninitializedComponent
- the component that was not initialzied
-
UninitializedComponentException
Constructor.- Parameters:
message
- exception message
-
UninitializedComponentException
Constructor.- Parameters:
wrappedException
- exception to be wrapped by this one
-
UninitializedComponentException
public UninitializedComponentException(@Nullable String message, @Nullable Exception wrappedException)Constructor.- Parameters:
message
- exception messagewrappedException
- exception to be wrapped by this one
-