Package org.apache.flink.client.program
Class ProgramAbortException
java.lang.Object
java.lang.Throwable
java.lang.Error
org.apache.flink.client.program.ProgramAbortException
- All Implemented Interfaces:
Serializable
A special exception used to abort programs when the caller is only interested in the program
plan, rather than in the full execution.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionProgramAbortException(Throwable cause) Creates a ProgramAbortException for the given exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ProgramAbortException
public ProgramAbortException() -
ProgramAbortException
Creates a ProgramAbortException for the given exception.- Parameters:
cause- The exception that causes the program to fail.
-