Package com.exasol
Class ExaUDFException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.exasol.ExaUDFException
-
- All Implemented Interfaces:
Serializable
public class ExaUDFException extends Exception
This exception indicates that an exception during the execution of user code happened.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExaUDFException()
Create a new instance of anExaUDFException
.ExaUDFException(String message)
Create a new instance of anExaUDFException
.ExaUDFException(String message, Throwable cause)
Create a new instance of anExaUDFException
.ExaUDFException(Throwable cause)
Create a new instance of anExaUDFException
.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ExaUDFException
public ExaUDFException()
Create a new instance of anExaUDFException
.
-
ExaUDFException
public ExaUDFException(String message)
Create a new instance of anExaUDFException
.- Parameters:
message
- error message
-
ExaUDFException
public ExaUDFException(String message, Throwable cause)
Create a new instance of anExaUDFException
.- Parameters:
message
- error messagecause
- exception causing this one
-
ExaUDFException
public ExaUDFException(Throwable cause)
Create a new instance of anExaUDFException
.- Parameters:
cause
- exception causing this one
-
-