Predicator.Errors.UndefinedVariableError (predicator v2.2.0)
View SourceError struct for undefined variable errors in Predicator evaluation.
This error occurs when trying to access a variable that doesn't exist in the evaluation context.
Fields
message
- Human-readable error descriptionvariable
- The name of the undefined variable
Examples
%Predicator.Errors.UndefinedVariableError{
message: "Undefined variable: score",
variable: "score"
}
%Predicator.Errors.UndefinedVariableError{
message: "Undefined variable: user.profile.settings",
variable: "user.profile.settings"
}
Summary
Functions
Creates an undefined variable error.