Package com.exasol
Class ExaCompilationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.exasol.ExaCompilationException
-
- All Implemented Interfaces:
Serializable
public class ExaCompilationException extends Exception
This exception indicates that the compilation of a script failed, or that the script API callback functions are not correctly implemented.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExaCompilationException()Create a new instance of anExaCompilationException.ExaCompilationException(String message)Create a new instance of anExaCompilationException.ExaCompilationException(String message, Throwable cause)Create a new instance of anExaCompilationException.ExaCompilationException(Throwable cause)Create a new instance of anExaCompilationException.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ExaCompilationException
public ExaCompilationException()
Create a new instance of anExaCompilationException.
-
ExaCompilationException
public ExaCompilationException(String message)
Create a new instance of anExaCompilationException.- Parameters:
message- error message
-
ExaCompilationException
public ExaCompilationException(String message, Throwable cause)
Create a new instance of anExaCompilationException.- Parameters:
message- error messagecause- exception causing this one
-
ExaCompilationException
public ExaCompilationException(Throwable cause)
Create a new instance of anExaCompilationException.- Parameters:
cause- exception causing this one
-
-