UserDataFunctionInvalidInputError Class
Represents an error that occurs when the input provided to a function is invalid. This error is typically thrown when the input provided to a function does not match the expected input type or format.
Constructor
UserDataFunctionInvalidInputError(message: str = "Something went wrong when parsing an input to this function. This could be because the provided data couldn't be constructed as the data type provided, or the provided data isn't valid JSON.", properties: dict = None)
Parameters
Name | Description |
---|---|
message
|
An optional message describing the exception. Defaults to "Something went wrong when parsing an input to this function. This could be because the provided data couldn't be constructed as the data type provided, or the provided data isn't valid JSON.". Default value: Something went wrong when parsing an input to this function. This could be because the provided data couldn't be constructed as the data type provided, or the provided data isn't valid JSON.
|
properties
|
An optional dictionary containing additional properties related to the exception. Default value: None
|