Java SDK Documentation
12.0.0
|
Public Member Functions | |
UdfException (int errorcode, Throwable causedBy) | |
UdfException (int errorcode, String message, Throwable causedBy) | |
UdfException (int errorcode, String message) | |
Public Attributes | |
int | errorcode |
Contains error information, UDx code can throw object of this class to Vertica to indicate an error
com.vertica.sdk.UdfException.UdfException | ( | int | errorcode, |
Throwable | causedBy | ||
) |
Constructor
errorcode | a numeric id that UDx can use to indicate the error. |
causedBy | an uncaught Throwable that caused the UDF to fail |
com.vertica.sdk.UdfException.UdfException | ( | int | errorcode, |
String | message, | ||
Throwable | causedBy | ||
) |
Constructor
errorcode | a numeric id that UDx can use to indicate the error. |
message | a human readable error message |
causedBy | an uncaught Throwable that caused the UDF to fail |
com.vertica.sdk.UdfException.UdfException | ( | int | errorcode, |
String | message | ||
) |
Constructor
errorcode | a numeric id that UDx can use to indicate the error. |
message | a human readable error message. |