Files
ivy/doc/sample/Exception.im
T

13 lines
236 B
Plaintext
Raw Normal View History

2025-01-16 13:17:46 +00:00
try
x = 0
--v = Int parse:'342'
2025-11-07 10:07:44 +00:00
catch ($err:number-format, err) in
2025-01-16 13:17:46 +00:00
x = 1
--cout put:'Cannot parse integer string ({err})'
catch (_, err) in
x = 2
--cout put:'Unknown error occurred ({err})'
finally
x = 3
end