RosettaCodeData/Task/Exceptions/Smalltalk/exceptions-3.st
2023-07-01 13:44:08 -04: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.
].