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