public class ProgramInvocationException extends Exception
| 构造器和说明 |
|---|
ProgramInvocationException(String message)
Creates a ProgramInvocationException with the given message.
|
ProgramInvocationException(String message,
org.apache.flink.api.common.JobID jobID)
Creates a ProgramInvocationException with the given message which contains job id.
|
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.
|
ProgramInvocationException(String message,
Throwable cause)
Creates a ProgramInvocationException for the given exception with an
additional message.
|
ProgramInvocationException(Throwable cause)
Creates a ProgramInvocationException for the given exception.
|
public ProgramInvocationException(String message)
message - The message for the exception.public ProgramInvocationException(String message, org.apache.flink.api.common.JobID jobID)
message - The additional message.jobID - ID of failed job.public ProgramInvocationException(Throwable cause)
cause - The exception that causes the program invocation to fail.public ProgramInvocationException(String message, Throwable cause)
message - The additional message.cause - The exception that causes the program invocation to fail.public ProgramInvocationException(String message, org.apache.flink.api.common.JobID jobID, Throwable cause)
message - The additional message.jobID - ID of failed job.cause - The exception that causes the program invocation to fail.Copyright © 2014–2020 The Apache Software Foundation. All rights reserved.