Package com.sas.services.security
Class CredentialLoginServiceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.sas.util.ChainedException
com.sas.services.ServiceException
com.sas.services.security.LoginServiceException
com.sas.services.security.CredentialLoginServiceException
- All Implemented Interfaces:
com.sas.util.ChainedExceptionInterface,Serializable
This exception gets thrown when a user attempts
to authenticate, but the authentication fails
due to a bad user ID or password.
- Since:
- 1.1
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a default exception to detail a login failure caused by an invalid credential.CredentialLoginServiceException(String message) Constructs an exception to detail a login failure caused by an invalid credential using the specified message.CredentialLoginServiceException(Throwable throwable, String message) Constructs an exception to detail a login failure caused by an invalid credential using the specified message and throwable. -
Method Summary
Methods inherited from class com.sas.util.ChainedException
chainContains, getRootException, getRootException, getTargetException, getTargetException, printStackTrace, printStackTrace, printStackTrace, toString, toStringBufferMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTraceMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Constructor Details
-
CredentialLoginServiceException
public CredentialLoginServiceException()Constructs a default exception to detail a login failure caused by an invalid credential. -
CredentialLoginServiceException
public CredentialLoginServiceException(String message) Constructs an exception to detail a login failure caused by an invalid credential using the specified message.- Parameters:
message- Message detailing the invalid credential login failure.
-
CredentialLoginServiceException
public CredentialLoginServiceException(Throwable throwable, String message) Constructs an exception to detail a login failure caused by an invalid credential using the specified message and throwable.- Parameters:
throwable- Throwable which caused the connection to be refused.message- Message detailing the invalid credential login failure.
-