RosettaCodeData/Task/Exceptions/Smalltalk/exceptions-3.st

10 lines
167 B
Smalltalk
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
"exec" "gst" "-f" "$0" "$0" "$*"
"exit"
[
Transcript show: 'Throwing yawp'; cr.
self error: 'Yawp!'.
] on: Error do: [ :e |
Transcript show: 'Caught yawp'; cr.
].