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:
java.io.Serializable
- Direct Known Subclasses:
CookieTheftException
,InvalidCookieException
public class RememberMeAuthenticationException extends AuthenticationException
This exception is thrown when anAuthentication
exception occurs while using the remember-me authentication.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RememberMeAuthenticationException(java.lang.String msg)
Constructs anRememberMeAuthenticationException
with the specified message and no root cause.RememberMeAuthenticationException(java.lang.String msg, java.lang.Throwable cause)
Constructs aRememberMeAuthenticationException
with the specified message and root cause.
-
-
-
Constructor Detail
-
RememberMeAuthenticationException
public RememberMeAuthenticationException(java.lang.String msg, java.lang.Throwable cause)
Constructs aRememberMeAuthenticationException
with the specified message and root cause.- Parameters:
msg
- the detail messagecause
- the root cause
-
RememberMeAuthenticationException
public RememberMeAuthenticationException(java.lang.String msg)
Constructs anRememberMeAuthenticationException
with the specified message and no root cause.- Parameters:
msg
- the detail message
-
-