Package com.sas.lsaf.client
Class LogonException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.sas.lsaf.core.AbstractRuntimeException
-
- com.sas.lsaf.client.LogonException
-
- All Implemented Interfaces:
java.io.Serializable
public class LogonException extends AbstractRuntimeException
Thrown when logon attempt fails due to configuration or credential errors.- Since:
- 2.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LogonException(java.lang.String message)
Constructs aLogonException
with the specified message.LogonException(java.lang.String message, java.lang.Throwable cause)
Constructs aLogonException
with the specified message and root cause.
-
Method Summary
-
Methods inherited from class com.sas.lsaf.core.AbstractRuntimeException
getMessage, getRootCause
-
-
-
-
Constructor Detail
-
LogonException
public LogonException(java.lang.String message)
Constructs aLogonException
with the specified message.- Parameters:
message
- the detail message (which is saved for later retrieval by theAbstractRuntimeException.getMessage()
method).
-
LogonException
public LogonException(java.lang.String message, java.lang.Throwable cause)
Constructs aLogonException
with the specified message and root cause.- Parameters:
message
- the detail message (which is saved for later retrieval by theAbstractRuntimeException.getMessage()
method).cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (Anull
value is permitted, and indicates that the cause is nonexistent or unknown.)
-
-