Package de.xima.fc.exceptions
Class TokenCreateException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.xima.fc.exceptions.TokenCreateException
-
- All Implemented Interfaces:
Serializable
public class TokenCreateException extends Exception
Exception that is thrown when a token cannot be created.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TokenCreateException(String message)
Creates a new token create exception with the given message.TokenCreateException(String message, Throwable cause)
Creates a new token create exception with the given message and cause.TokenCreateException(Throwable cause)
Creates a new token create 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
-
TokenCreateException
public TokenCreateException(String message)
Creates a new token create exception with the given message.- Parameters:
message
- Message explaining the exception that occurred.
-
TokenCreateException
public TokenCreateException(String message, Throwable cause)
Creates a new token create exception with the given message and cause.- Parameters:
message
- Message explaining the exception that occurred.cause
- The underlying cause that resulted in this exception.
-
TokenCreateException
public TokenCreateException(Throwable cause)
Creates a new token create exception with the given cause.- Parameters:
cause
- The underlying cause that resulted in this exception.
-
-