Class OIDCRPException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- net.shibboleth.idp.plugin.authn.oidc.rp.exception.OIDCRPException
-
- All Implemented Interfaces:
Serializable
@ThreadSafe public class OIDCRPException extends Exception
An exception to signal a general OIDC RelyingParty error.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUIDSerial UID.
-
Constructor Summary
Constructors Constructor Description OIDCRPException()Constructor.OIDCRPException(String message)Constructor.OIDCRPException(String message, Throwable cause)Constructor.OIDCRPException(Throwable cause)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 UID.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
OIDCRPException
public OIDCRPException()
Constructor.
-
OIDCRPException
public OIDCRPException(String message, Throwable cause)
Constructor.- Parameters:
message- exception messagecause- exception to be wrapped by this one
-
OIDCRPException
public OIDCRPException(String message)
Constructor.- Parameters:
message- exception message
-
OIDCRPException
public OIDCRPException(Throwable cause)
Constructor.- Parameters:
cause- exception to be wrapped by this one
-
-