Package org.apache.flink.optimizer
Class CompilerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.flink.optimizer.CompilerException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CompilerPostPassException
public class CompilerException extends RuntimeException
An exception that is thrown by the Optimizer when encountering an illegal condition.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CompilerException()Creates a compiler exception with no message and no cause.CompilerException(String message)Creates a compiler exception with the given message and no cause.CompilerException(String message, Throwable cause)Creates a compiler exception with the given message and cause.CompilerException(Throwable cause)Creates a compiler exception with the given cause and no message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
CompilerException
public CompilerException()
Creates a compiler exception with no message and no cause.
-
CompilerException
public CompilerException(String message)
Creates a compiler exception with the given message and no cause.- Parameters:
message- The message for the exception.
-
CompilerException
public CompilerException(Throwable cause)
Creates a compiler exception with the given cause and no message.- Parameters:
cause- The Throwable that caused this exception.
-
-