Class InvalidIssException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.forgerock.oauth.resolvers.exceptions.OpenIdConnectVerificationException
-
- org.forgerock.oauth.resolvers.exceptions.InvalidIssException
-
- All Implemented Interfaces:
Serializable
public class InvalidIssException extends OpenIdConnectVerificationException
Invalid issuer.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidIssException()
Construct the exception.InvalidIssException(String message)
Construct the exception with the given message.InvalidIssException(String message, Throwable cause)
Construct the exception with the given message and cause.InvalidIssException(Throwable cause)
Construct the exception with the given cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
InvalidIssException
public InvalidIssException()
Construct the exception.
-
InvalidIssException
public InvalidIssException(String message)
Construct the exception with the given message.- Parameters:
message
- The message.
-
InvalidIssException
public InvalidIssException(String message, Throwable cause)
Construct the exception with the given message and cause.- Parameters:
message
- The message.cause
- The cause.
-
InvalidIssException
public InvalidIssException(Throwable cause)
Construct the exception with the given cause.- Parameters:
cause
- The cause.
-
-