Class UnknownSessionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.aristaflow.adept2.model.runtimeenvironment.UnknownSessionException
- All Implemented Interfaces:
Serializable
An exception to indicate that an execution session ID is not known (any more)
by a requested service. This is usually caused due to a termination of the
execution by the server which is not noticed by the client. The termination
may have been caused by the client not responding in time to a server
request.
- Author:
- Ulrich Kreher
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionUnknownSessionException(String sessionID) Creates a new exception indicating that the designated execution session ID is not known by the requested service.UnknownSessionException(String sessionID, String msg) Creates a new exception indicating that the designated execution session ID is not known by the requested service. -
Method Summary
Modifier and TypeMethodDescriptionGets the execution session ID that is unknown and lead to this exception.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
sessionID
The execution session ID that is unknown and lead to this exception.
-
-
Constructor Details
-
UnknownSessionException
Creates a new exception indicating that the designated execution session ID is not known by the requested service.- Parameters:
sessionID- The execution session ID that is unknown and lead to this exception.
-
UnknownSessionException
Creates a new exception indicating that the designated execution session ID is not known by the requested service.- Parameters:
sessionID- The execution session ID that is unknown and lead to this exception.msg- An arbitrary message for the exception.
-
-
Method Details
-
getSessionID
Gets the execution session ID that is unknown and lead to this exception.- Returns:
- The execution session ID that is unknown and lead to this exception.
-