Class TokenRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.silverpeas.core.security.token.exception.TokenRuntimeException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
TokenGenerationException
public class TokenRuntimeException extends RuntimeException
The exception for all abnormal errors occuring with the Token API and for which the client doesn't need to perform a dedicated action.- Author:
- Yohann Chastagnier
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TokenRuntimeException()
Creates a new instance ofTokenRuntimeException
without detail message.TokenRuntimeException(String msg)
Constructs an instance ofTokenRuntimeException
with the specified detail message.TokenRuntimeException(String message, Throwable cause)
Constructs an instance ofTokenRuntimeException
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
-
TokenRuntimeException
public TokenRuntimeException()
Creates a new instance ofTokenRuntimeException
without detail message.
-
TokenRuntimeException
public TokenRuntimeException(String msg)
Constructs an instance ofTokenRuntimeException
with the specified detail message.- Parameters:
msg
- the detail message.
-
-