Package net.officefloor.web.session
Class InvalidatedSessionHttpException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- net.officefloor.server.http.HttpException
-
- net.officefloor.web.session.InvalidatedSessionHttpException
-
- All Implemented Interfaces:
java.io.Serializable
public class InvalidatedSessionHttpException extends HttpException
Indicates theHttpSession
is currently invalidated and can not be used. This can occur:- after the
HttpSession
has been invalidated with no furtherHttpSession
required (in other words not creating anotherHttpSession
) - during
HttpSession
invalidation as anotherHttpSession
is being created - failure in invalidating the
HttpSession
- Author:
- Daniel Sagenschneider
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidatedSessionHttpException()
Initiate.InvalidatedSessionHttpException(java.lang.Throwable cause)
Initiate with cause.
-
Method Summary
-
Methods inherited from class net.officefloor.server.http.HttpException
getEntity, getHttpHeaders, getHttpStatus, getMessage, writeHttpResponse
-
-
-
-
Constructor Detail
-
InvalidatedSessionHttpException
public InvalidatedSessionHttpException()
Initiate.
-
InvalidatedSessionHttpException
public InvalidatedSessionHttpException(java.lang.Throwable cause)
Initiate with cause.- Parameters:
cause
- Cause ofHttpSession
being invalid.
-
-