Class AuthenticationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.springframework.security.core.AuthenticationException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
AccountStatusException
,ActiveDirectoryAuthenticationException
,AuthenticationCancelledException
,AuthenticationCredentialsNotFoundException
,AuthenticationServiceException
,BadCredentialsException
,InsufficientAuthenticationException
,NonceExpiredException
,OAuth2AuthenticationException
,PreAuthenticatedCredentialsNotFoundException
,ProviderNotFoundException
,RememberMeAuthenticationException
,Saml2AuthenticationException
,SessionAuthenticationException
,UsernameNotFoundException
public abstract class AuthenticationException extends java.lang.RuntimeException
Abstract superclass for all exceptions related to anAuthentication
object being invalid for whatever reason.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AuthenticationException(java.lang.String msg)
Constructs anAuthenticationException
with the specified message and no root cause.AuthenticationException(java.lang.String msg, java.lang.Throwable cause)
Constructs anAuthenticationException
with the specified message and root cause.
-
-
-
Constructor Detail
-
AuthenticationException
public AuthenticationException(java.lang.String msg, java.lang.Throwable cause)
Constructs anAuthenticationException
with the specified message and root cause.- Parameters:
msg
- the detail messagecause
- the root cause
-
AuthenticationException
public AuthenticationException(java.lang.String msg)
Constructs anAuthenticationException
with the specified message and no root cause.- Parameters:
msg
- the detail message
-
-