com.vertica.sdk.UdfException Class Reference

Inheritance diagram for com.vertica.sdk.UdfException:

Collaboration diagram for com.vertica.sdk.UdfException:

Public Member Functions
UdfException (int errorcode, Throwable causedBy)
UdfException (int errorcode, String message, Throwable causedBy)
UdfException (int errorcode, String message)
Public Attributes
int errorcode

Detailed Description

Contains error information, UDx code can throw object of this class to Vertica to indicate an error

Constructor & Destructor Documentation

com.vertica.sdk.UdfException.UdfException(int errorcode, Throwable causedBy)

Constructor

Parameters

  • 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

Parameters

  • 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

Parameters

  • errorcode: a numeric id that UDx can use to indicate the error.
  • message: a human readable error message.