Class RememberMeAuthenticationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.security.core.AuthenticationException
org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CookieTheftException
,InvalidCookieException
This exception is thrown when an
Authentication
exception occurs while using
the remember-me authentication.- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs anRememberMeAuthenticationException
with the specified message and no root cause.RememberMeAuthenticationException
(String msg, Throwable cause) Constructs aRememberMeAuthenticationException
with the specified message and root cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
RememberMeAuthenticationException
Constructs aRememberMeAuthenticationException
with the specified message and root cause.- Parameters:
msg
- the detail messagecause
- the root cause
-
RememberMeAuthenticationException
Constructs anRememberMeAuthenticationException
with the specified message and no root cause.- Parameters:
msg
- the detail message
-