RosettaCodeData/Task/Exceptions/Smalltalk/exceptions-3.st
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

9 lines
167 B
Smalltalk

"exec" "gst" "-f" "$0" "$0" "$*"
"exit"
[
Transcript show: 'Throwing yawp'; cr.
self error: 'Yawp!'.
] on: Error do: [ :e |
Transcript show: 'Caught yawp'; cr.
].