Class ViewExpiredException

    • Constructor Summary

      Constructors 
      Constructor Description
      ViewExpiredException​()
      Construct a new exception with no detail message or root cause.
      ViewExpiredException​(java.lang.String viewId)
      Construct a new exception with the specified view identifier.
      ViewExpiredException​(java.lang.String message, java.lang.String viewId)
      Construct a new exception with the specified detail message and no root cause.
      ViewExpiredException​(java.lang.String message, java.lang.Throwable cause, java.lang.String viewId)
      Construct a new exception with the specified detail message and root cause.
      ViewExpiredException​(java.lang.Throwable cause, java.lang.String viewId)
      Construct a new exception with the specified root cause.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getMessage​()
      Return the message for this exception prepended with the view identifier if the view identifier is not null, otherwise, return the message.
      java.lang.String getViewId​()
      Return the view identifier of this exception, or null if the view identifier is nonexistent or unknown.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
    • Constructor Detail

      • ViewExpiredException

        public ViewExpiredException​()

        Construct a new exception with no detail message or root cause.

      • ViewExpiredException

        public ViewExpiredException​(java.lang.String viewId)

        Construct a new exception with the specified view identifier.

        Parameters:
        viewId - The view identifier for this exception
      • ViewExpiredException

        public ViewExpiredException​(java.lang.String message,
                                    java.lang.String viewId)

        Construct a new exception with the specified detail message and no root cause.

        Parameters:
        message - The detail message for this exception
        viewId - The view identifier for this exception
      • ViewExpiredException

        public ViewExpiredException​(java.lang.Throwable cause,
                                    java.lang.String viewId)

        Construct a new exception with the specified root cause. The detail message will be set to (cause == null ? null : cause.toString()

        Parameters:
        cause - The root cause for this exception
        viewId - The view identifier for this exception
      • ViewExpiredException

        public ViewExpiredException​(java.lang.String message,
                                    java.lang.Throwable cause,
                                    java.lang.String viewId)

        Construct a new exception with the specified detail message and root cause.

        Parameters:
        message - The detail message for this exception
        cause - The root cause for this exception
        viewId - The view identifier for this exception
    • Method Detail

      • getViewId

        public java.lang.String getViewId​()

        Return the view identifier of this exception, or null if the view identifier is nonexistent or unknown.

        Returns:
        the view id, or null.
      • getMessage

        public java.lang.String getMessage​()

        Return the message for this exception prepended with the view identifier if the view identifier is not null, otherwise, return the message.

        Overrides:
        getMessage in class java.lang.Throwable
        Returns:
        the message.