RosettaCodeData/Task/Exceptions/Lingo/exceptions-3.lingo

7 lines
173 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
-- in a movie script
-- usage: throw("Custom error 23")
on throw (msg)
_player.alertHook.alertHook("Script runtime error", msg, #script)
abort() -- exits call stack
end