RosettaCodeData/Task/Exceptions/Lingo/exceptions-3.lingo
2023-07-01 13:44:08 -04:00

6 lines
173 B
Text

-- 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