Class InvalidTokenException
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.xima.fc.exceptions.InvalidTokenException
- All Implemented Interfaces:
Serializable
Exception that is thrown when a token is invalid.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInvalidTokenException(String message) Creates a new invalid token exception with the given message.InvalidTokenException(String message, Throwable cause) Creates a new invalid token exception with the given message and cause.InvalidTokenException(Throwable cause) Creates a new invalid token exception with the given cause. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InvalidTokenException
Creates a new invalid token exception with the given message.- Parameters:
message- Message explaining the exception that occurred.
-
InvalidTokenException
-
InvalidTokenException
Creates a new invalid token exception with the given cause.- Parameters:
cause- The underlying cause that resulted in this exception.
-