RosettaCodeData/Task/Exceptions/Phix/exceptions-2.phix
2017-09-25 22:28:19 +02:00

9 lines
139 B
Text

try
one_of(these)
catch e
if e[E_CODE]=501 then
puts(1,"that's no excuse!\n")
else
throw(e)
end if
end try