Class InvalidatedSessionHttpException

All Implemented Interfaces:
Serializable

public class InvalidatedSessionHttpException extends HttpException
Indicates the HttpSession is currently invalidated and can not be used. This can occur:
  1. after the HttpSession has been invalidated with no further HttpSession required (in other words not creating another HttpSession)
  2. during HttpSession invalidation as another HttpSession is being created
  3. failure in invalidating the HttpSession
Author:
Daniel Sagenschneider
See Also:
  • Constructor Details

    • InvalidatedSessionHttpException

      public InvalidatedSessionHttpException()
      Initiate.
    • InvalidatedSessionHttpException

      public InvalidatedSessionHttpException(Throwable cause)
      Initiate with cause.
      Parameters:
      cause - Cause of HttpSession being invalid.