built-in method
evaluation_error/1ï
Descriptionï
evaluation_error(Error)
Throws an evaluation error. Used when evaluating an arithmetic expression generates an exception. This built-in method is declared private and thus cannot be used as a message to an object. Calling this predicate is equivalent to the following sequence of goals:
...,
context(Context),
throw(error(evaluation_error(Error), Context)).
This allows the user to generate errors in the same format used by the runtime.
Possible values for Error include:
float_overflowint_overflowundefinedunderflowzero_divisor
Modes and number of proofsï
evaluation_error(@nonvar) - error
Errorsï
When called:
evaluation_error(Exception)Examplesï
...,
Divisor =:= 0,
evaluation_error(zero_divisor).