throw-error
builtin-function
(throw-error &rest args)
Throws an exception of type LispException. The arguments are combined as if by
the function string.
make-html > (let n 2)
it: n
make-html > (throw-error "There are " n " things wrong.")
There are 2 things wrong.