Open
Description
Every use of raise("some string")
renders an error box with
"some string"
(Show program execution trace...)
It would be better to raise(message-exception("some string"))
, which would render an error box as
some string
(Show program execution trace...)
(And it would be better still for the compiler to raise proper error values rather than just message exceptions, but this would be a good start.