Package com.spotfire.server.security
Class PostAuthenticationFilterException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.spotfire.server.security.PostAuthenticationFilterException
- All Implemented Interfaces:
Serializable
A
PostAuthenticationFilterException is an exception indicating that
a configuration error prevents the PostAuthenticationFilter from working.- Since:
- 3.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new exception withnullas its detail message.PostAuthenticationFilterException(String message) Constructs a new exception with the specified detail message.PostAuthenticationFilterException(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.Constructs a new exception with the specified cause and a detail message ofcause == null ? null : cause.toString(), which typically contains the class and detail message ofcause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PostAuthenticationFilterException
public PostAuthenticationFilterException()Constructs a new exception withnullas its detail message.- Since:
- 3.0
-
PostAuthenticationFilterException
Constructs a new exception with the specified detail message.- Parameters:
message- the detail message.- Since:
- 3.0
-
PostAuthenticationFilterException
Constructs a new exception with the specified detail message and cause.- Parameters:
message- the detail message.cause- the cause.- Since:
- 3.0
-
PostAuthenticationFilterException
Constructs a new exception with the specified cause and a detail message ofcause == null ? null : cause.toString(), which typically contains the class and detail message ofcause.- Parameters:
cause- the cause.- Since:
- 3.0
-