Class TokenGenerationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.silverpeas.core.security.token.exception.TokenRuntimeException
-
- org.silverpeas.core.security.token.exception.TokenGenerationException
-
- All Implemented Interfaces:
Serializable
public class TokenGenerationException extends TokenRuntimeException
An exception thrown when an error is encountered during the generation of a token.- Author:
- mmoquillon
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TokenGenerationException()
Creates a new instance ofTokenGenerationException
without detail message.TokenGenerationException(String msg)
Constructs an instance ofTokenGenerationException
with the specified detail message.TokenGenerationException(String message, Throwable cause)
Constructs an instance ofTokenGenerationException
with the specified detail message and with the specified 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
-
TokenGenerationException
public TokenGenerationException()
Creates a new instance ofTokenGenerationException
without detail message.
-
TokenGenerationException
public TokenGenerationException(String msg)
Constructs an instance ofTokenGenerationException
with the specified detail message.- Parameters:
msg
- the detail message.
-
-