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
public class IllegalExecutionStateException extends IllegalStateException
A specialIllegalStateException
indicating a mismatch in the expected and actualExecutionState
of anExecution
.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IllegalExecutionStateException(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 Detail
-
IllegalExecutionStateException
public IllegalExecutionStateException(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
-
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
-
-