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
public class ProgramAbortException extends Error
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProgramAbortException()
ProgramAbortException(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 Detail
-
ProgramAbortException
public ProgramAbortException()
-
ProgramAbortException
public ProgramAbortException(Throwable cause)
Creates a ProgramAbortException for the given exception.- Parameters:
cause
- The exception that causes the program to fail.
-
-