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:
Serializable
Thrown when logoff attempt fails for any reason.
- Since:
- 2.1
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionLogoffException(String message) Constructs aLogoffExceptionwith the specified message.LogoffException(String message, Throwable cause) Constructs aLogoffExceptionwith the specified message and root cause. -
Method Summary
Methods inherited from class com.sas.lsaf.core.AbstractRuntimeException
getMessage, getRootCauseMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
LogoffException
Constructs aLogoffExceptionwith the specified message.- Parameters:
message- the detail message (which is saved for later retrieval by theAbstractRuntimeException.getMessage()method).
-
LogoffException
Constructs aLogoffExceptionwith 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). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
-