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

11 lines
190 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
define main();
vars cargo;
define catcher();
;;; print exception data
cargo =>
enddefine;
catch(throw_exception, catcher, [my_exception ?cargo]);
enddefine;
main();