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
public class InvalidCSRFTokenException extends FlowExecutionException
Exception indicating a problem validating a CSRF token at runtime.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUIDSerial version UID.
-
Constructor Summary
Constructors Constructor Description InvalidCSRFTokenException(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 Detail
-
serialVersionUID
private static final long serialVersionUID
Serial version UID.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
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
-
-