Package net.shibboleth.idp.ui.csrf
Class InvalidCSRFTokenException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.webflow.core.FlowException
org.springframework.webflow.execution.FlowExecutionException
net.shibboleth.idp.ui.csrf.InvalidCSRFTokenException
- All Implemented Interfaces:
Serializable
Exception indicating a problem validating a CSRF token at runtime.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionInvalidCSRFTokenException
(String flowId, String stateId, String message) Creates a new invalid CSRF token execution exception. -
Method Summary
Methods inherited from class org.springframework.webflow.execution.FlowExecutionException
getFlowId, getStateId
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerial version UID.- See Also:
-
-
Constructor Details
-
InvalidCSRFTokenException
public InvalidCSRFTokenException(@Nonnull String flowId, @Nullable String stateId, @Nonnull String message) Creates a new invalid CSRF token execution exception.- Parameters:
flowId
- the flow where the exception occurredstateId
- the state where the exception occurredmessage
- a descriptive message
-