RosettaCodeData/Task/Exceptions/Phix/exceptions-2.phix

10 lines
139 B
Plaintext

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