Class InvalidSessionException

    • Constructor Detail

      • InvalidSessionException

        public InvalidSessionException()
        No-Arg Constructor
      • InvalidSessionException

        public InvalidSessionException​(String message)
        Constructs an instance of the exception with the specified detail message. A detail message is a String that describes this particular exception.
        Parameters:
        message - the detail message
      • InvalidSessionException

        public InvalidSessionException​(Throwable e)
        Constructs an instance of the exception with no detail message but with a single exception.
        Parameters:
        e - the exception that is encapsulated by this exception
      • InvalidSessionException

        public InvalidSessionException​(Throwable e,
                                       String message)
        Constructs an instance of the exception with the specified detail message and a single exception. A detail message is a String that describes this particular exception.
        Parameters:
        message - the detail message
        e - the exception that is encapsulated by this exception
      • InvalidSessionException

        public InvalidSessionException​(BundleUtil.Event event,
                                       String message)
        Construct an instance with an error code and message specified.
        Parameters:
        message - The error message
        event - The error code
      • InvalidSessionException

        public InvalidSessionException​(BundleUtil.Event event,
                                       Throwable t,
                                       String message)
        Construct an instance with a linked exception, and an error code and message, specified.
        Parameters:
        t - An exception to chain to this exception
        message - The error message
        event - The error code
      • InvalidSessionException

        public InvalidSessionException​(BundleUtil.Event event)