Class AuthenticationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.security.core.AuthenticationException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AccountStatusException,ActiveDirectoryAuthenticationException,AuthenticationCredentialsNotFoundException,AuthenticationServiceException,BadCredentialsException,InsufficientAuthenticationException,NonceExpiredException,OAuth2AuthenticationException,PreAuthenticatedCredentialsNotFoundException,ProviderNotFoundException,RememberMeAuthenticationException,Saml2AuthenticationException,SessionAuthenticationException,UsernameNotFoundException
Abstract superclass for all exceptions related to an
Authentication object
being invalid for whatever reason.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs anAuthenticationExceptionwith the specified message and no root cause.AuthenticationException(String msg, Throwable cause) Constructs anAuthenticationExceptionwith 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
-
AuthenticationException
Constructs anAuthenticationExceptionwith the specified message and root cause.- Parameters:
msg- the detail messagecause- the root cause
-
AuthenticationException
Constructs anAuthenticationExceptionwith the specified message and no root cause.- Parameters:
msg- the detail message
-