Class TokenValidationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.silverpeas.core.security.token.exception.TokenException
-
- org.silverpeas.core.security.token.exception.TokenValidationException
-
- All Implemented Interfaces:
Serializable
public class TokenValidationException extends TokenException
An exception that is thrown when a token validation fails.- Author:
- mmoquillon
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TokenValidationException()
Creates a new instance ofTokenValidationException
without detail message.TokenValidationException(String msg)
Constructs an instance ofTokenValidationException
with the specified detail message.TokenValidationException(String message, Throwable cause)
Constructs an instance ofTokenValidationException
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
-
TokenValidationException
public TokenValidationException()
Creates a new instance ofTokenValidationException
without detail message.
-
TokenValidationException
public TokenValidationException(String msg)
Constructs an instance ofTokenValidationException
with the specified detail message.- Parameters:
msg
- the detail message.
-
-