Class PostAuthenticationFilterException

java.lang.Object
java.lang.Throwable
java.lang.Exception
com.spotfire.server.security.PostAuthenticationFilterException
All Implemented Interfaces:
Serializable

public class PostAuthenticationFilterException extends Exception
A PostAuthenticationFilterException is an exception indicating that a configuration error prevents the PostAuthenticationFilter from working.
Since:
3.0
See Also:
  • Constructor Details

    • PostAuthenticationFilterException

      public PostAuthenticationFilterException()
      Constructs a new exception with null as its detail message.
      Since:
      3.0
    • PostAuthenticationFilterException

      public PostAuthenticationFilterException(String message)
      Constructs a new exception with the specified detail message.
      Parameters:
      message - the detail message.
      Since:
      3.0
    • PostAuthenticationFilterException

      public PostAuthenticationFilterException(String message, Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      Parameters:
      message - the detail message.
      cause - the cause.
      Since:
      3.0
    • PostAuthenticationFilterException

      public PostAuthenticationFilterException(Throwable cause)
      Constructs a new exception with the specified cause and a detail message of cause == null ? null : cause.toString(), which typically contains the class and detail message of cause.
      Parameters:
      cause - the cause.
      Since:
      3.0