Package org.codelibs.fess.exception
Class InvalidAccessTokenException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.codelibs.fess.exception.FessSystemException
org.codelibs.fess.exception.InvalidAccessTokenException
- All Implemented Interfaces:
Serializable
Exception thrown when an invalid access token is encountered.
This exception is typically used in authentication and authorization contexts
where a provided access token is invalid, expired, or malformed.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInvalidAccessTokenException(String type, String message) Creates a new InvalidAccessTokenException with the specified type and message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InvalidAccessTokenException
Creates a new InvalidAccessTokenException with the specified type and message.- Parameters:
type- the type of the invalid access tokenmessage- the detailed error message
-
-
Method Details
-
getType
Returns the type of the invalid access token.- Returns:
- the type of the invalid access token
-