Class DiscoveryException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.forgerock.openig.filter.oauth2.client.DiscoveryException
-
- All Implemented Interfaces:
Serializable
public class DiscoveryException extends Exception
Represents an exception whilst performing OpenID discovery.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static long
serialVersionUID
Serial Version UID.
-
Constructor Summary
Constructors Constructor Description DiscoveryException(String message)
Builds anDiscoveryException
with a given message.DiscoveryException(String message, Exception cause)
Builds anDiscoveryException
with a given message and cause.
-
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
public static final long serialVersionUID
Serial Version UID.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
DiscoveryException
public DiscoveryException(String message)
Builds anDiscoveryException
with a given message.- Parameters:
message
- Exception's message
-
DiscoveryException
public DiscoveryException(String message, Exception cause)
Builds anDiscoveryException
with a given message and cause.- Parameters:
message
- Exception's messagecause
- Exception cause
-
-