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 longserialVersionUIDSerial 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 Detail
-
serialVersionUID
private static final long serialVersionUID
Serial version UID.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
UninitializedComponentException
public UninitializedComponentException()
Constructor.
-
UninitializedComponentException
public UninitializedComponentException(Object uninitializedComponent)
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
public UninitializedComponentException(@Nullable String message)Constructor.- Parameters:
message- exception message
-
UninitializedComponentException
public UninitializedComponentException(@Nullable Exception wrappedException)Constructor.- Parameters:
wrappedException- exception to be wrapped by this one
-
-