Class IllegalExecutionStateException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalStateException
org.apache.flink.runtime.executiongraph.IllegalExecutionStateException
- All Implemented Interfaces:
Serializable
A special
IllegalStateException indicating a mismatch in the expected and actual ExecutionState of an Execution.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionIllegalExecutionStateException(ExecutionState expected, ExecutionState actual) Creates a new IllegalExecutionStateException with the error message indicating the expected and actual state.IllegalExecutionStateException(Execution execution, ExecutionState expected, ExecutionState actual) Creates a new IllegalExecutionStateException with the error message indicating the expected and actual state. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
IllegalExecutionStateException
Creates a new IllegalExecutionStateException with the error message indicating the expected and actual state.- Parameters:
expected- The expected stateactual- The actual state
-
IllegalExecutionStateException
public IllegalExecutionStateException(Execution execution, ExecutionState expected, ExecutionState actual) Creates a new IllegalExecutionStateException with the error message indicating the expected and actual state.- Parameters:
expected- The expected stateactual- The actual state
-