Package com.saperion.exception
Class SaAuthenticationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.saperion.exception.SaBasicException
-
- com.saperion.exception.SaAuthenticationException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
SaLicenseNotAllowedException
,SaPasswordExpiredException
public class SaAuthenticationException extends SaBasicException
Authentication exceptions which may occur in the following situations.
Authentication
- "system failure during log on process",
- "user does not exist",
- "wrong password",
- "user account is inactive",
- "no current user for automatic login found",
- "client was not supplied",
- "no licenses available for login",
- "user account is already in use",
- "password has expired",
- "invalid client kind",
- "user is not logged in".
- "authentication's server IP does not match",
- "authentication's port number does not match",
- "authentication contains invalid token address",
Access rights
- "insufficient rights for accessing document",
- "flags for document access could not be determined",
GetUserIDs
- "SYSACLUSERLIST column not found in definition",
- "column SYSACLUSERLIST has invalid type",
- Author:
- rad
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SaAuthenticationException(java.lang.String message)
ConstructsSaAuthentificationException
with the specified message and nested exception.SaAuthenticationException(java.lang.String message, java.lang.Throwable cause)
ConstructsSaAuthentificationException
with the specified message and nested exception.
-
-
-
Constructor Detail
-
SaAuthenticationException
public SaAuthenticationException(java.lang.String message)
ConstructsSaAuthentificationException
with the specified message and nested exception.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).- See Also:
SaBasicException(String)
-
SaAuthenticationException
public SaAuthenticationException(java.lang.String message, java.lang.Throwable cause)
ConstructsSaAuthentificationException
with the specified message and nested exception.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)- See Also:
SaBasicException(String,Throwable)
-
-