RosettaCodeData/Task/Exceptions/Pop11/exceptions-2.pop11

11 lines
190 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
define main();
vars cargo;
define catcher();
;;; print exception data
cargo =>
enddefine;
catch(throw_exception, catcher, [my_exception ?cargo]);
enddefine;
main();