Package org.apache.flink.runtime.client
Class JobExecutionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.flink.util.FlinkException
-
- org.apache.flink.runtime.client.JobExecutionException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
JobCancellationException,JobInitializationException,JobSubmissionException
public class JobExecutionException extends org.apache.flink.util.FlinkExceptionThis exception is the base exception for all exceptions that denote any failure during the execution of a job.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JobExecutionException(org.apache.flink.api.common.JobID jobID, String msg)JobExecutionException(org.apache.flink.api.common.JobID jobID, String msg, Throwable cause)Constructs a new job execution exception.JobExecutionException(org.apache.flink.api.common.JobID jobID, Throwable cause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apache.flink.api.common.JobIDgetJobID()-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
JobExecutionException
public JobExecutionException(org.apache.flink.api.common.JobID jobID, String msg, Throwable cause)Constructs a new job execution exception.- Parameters:
jobID- The job's ID.msg- The cause for the execution exception.cause- The cause of the exception
-
JobExecutionException
public JobExecutionException(org.apache.flink.api.common.JobID jobID, String msg)
-
JobExecutionException
public JobExecutionException(org.apache.flink.api.common.JobID jobID, Throwable cause)
-
-