Class ProgramInvocationException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.flink.client.program.ProgramInvocationException
All Implemented Interfaces:
Serializable

public class ProgramInvocationException extends Exception
Exception used to indicate that there is an error during the invocation of a Flink program.
See Also:
  • Constructor Details

    • ProgramInvocationException

      public ProgramInvocationException(String message)
      Creates a ProgramInvocationException with the given message.
      Parameters:
      message - The message for the exception.
    • ProgramInvocationException

      public ProgramInvocationException(String message, org.apache.flink.api.common.JobID jobID)
      Creates a ProgramInvocationException with the given message which contains job id.
      Parameters:
      message - The additional message.
      jobID - ID of failed job.
    • ProgramInvocationException

      public ProgramInvocationException(Throwable cause)
      Creates a ProgramInvocationException for the given exception.
      Parameters:
      cause - The exception that causes the program invocation to fail.
    • ProgramInvocationException

      public ProgramInvocationException(String message, Throwable cause)
      Creates a ProgramInvocationException for the given exception with an additional message.
      Parameters:
      message - The additional message.
      cause - The exception that causes the program invocation to fail.
    • ProgramInvocationException

      public ProgramInvocationException(String message, org.apache.flink.api.common.JobID jobID, Throwable cause)
      Creates a ProgramInvocationException for the given exception with an additional message which contains job id.
      Parameters:
      message - The additional message.
      jobID - ID of failed job.
      cause - The exception that causes the program invocation to fail.