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

7 lines
173 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01: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