Package com.sas.lsaf.client
Class LogoffException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.sas.lsaf.core.AbstractRuntimeException
-
- com.sas.lsaf.client.LogoffException
-
- All Implemented Interfaces:
java.io.Serializable
public class LogoffException extends AbstractRuntimeException
Thrown when logoff attempt fails for any reason.- Since:
- 2.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LogoffException(java.lang.String message)
Constructs aLogoffException
with the specified message.LogoffException(java.lang.String message, java.lang.Throwable cause)
Constructs aLogoffException
with the specified message and root cause.
-
Method Summary
-
Methods inherited from class com.sas.lsaf.core.AbstractRuntimeException
getMessage, getRootCause
-
-
-
-
Constructor Detail
-
LogoffException
public LogoffException(java.lang.String message)
Constructs aLogoffException
with the specified message.- Parameters:
message
- the detail message (which is saved for later retrieval by theAbstractRuntimeException.getMessage()
method).
-
LogoffException
public LogoffException(java.lang.String message, java.lang.Throwable cause)
Constructs aLogoffException
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.)
-
-