Class AuthenticationServiceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.security.core.AuthenticationException
org.springframework.security.authentication.AuthenticationServiceException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- InternalAuthenticationServiceException
Thrown if an authentication request could not be processed due to a system problem.
 
This might be thrown if a backend authentication repository is unavailable, for example.
- 
Constructor SummaryConstructorsConstructorDescriptionConstructs anAuthenticationServiceExceptionwith the specified message.AuthenticationServiceException(String msg, Throwable cause) Constructs anAuthenticationServiceExceptionwith the specified message and root cause.
- 
Method SummaryMethods inherited from class org.springframework.security.core.AuthenticationExceptiongetAuthenticationRequest, setAuthenticationRequestMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
AuthenticationServiceExceptionConstructs anAuthenticationServiceExceptionwith the specified message.- Parameters:
- msg- the detail message
 
- 
AuthenticationServiceExceptionConstructs anAuthenticationServiceExceptionwith the specified message and root cause.- Parameters:
- msg- the detail message
- cause- root cause
 
 
-