Class InvalidAudException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.forgerock.oauth.resolvers.exceptions.OpenIdConnectVerificationException
-
- org.forgerock.oauth.resolvers.exceptions.InvalidAudException
-
- All Implemented Interfaces:
Serializable
public class InvalidAudException extends OpenIdConnectVerificationException
Invalid audience.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidAudException()
Construct the exception.InvalidAudException(String message)
Construct the exception with the given message.InvalidAudException(String message, Throwable cause)
Construct the exception with the given message and cause.InvalidAudException(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
-
InvalidAudException
public InvalidAudException()
Construct the exception.
-
InvalidAudException
public InvalidAudException(String message)
Construct the exception with the given message.- Parameters:
message
- The message.
-
InvalidAudException
public InvalidAudException(String message, Throwable cause)
Construct the exception with the given message and cause.- Parameters:
message
- The message.cause
- The cause.
-
InvalidAudException
public InvalidAudException(Throwable cause)
Construct the exception with the given cause.- Parameters:
cause
- The cause.
-
-