UserDataFunctionInternalError Class
Represents an internal error that occurs during the execution of a user-defined function. This error is typically thrown when an unexpected error occurs during the execution of a function that is not related to an input or the user's code.
Constructor
UserDataFunctionInternalError(message: str = 'An internal execution error occured during function execution', properties: dict = None)
Parameters
Name | Description |
---|---|
message
|
An optional message describing the exception. Defaults to "An internal execution error occured during function execution". Default value: An internal execution error occured during function execution
|
properties
|
An optional dictionary containing additional properties related to the exception. Default value: None
|