RosettaCodeData/Task/Exceptions/Nim/exceptions-3.nim
2023-07-01 13:44:08 -04:00

8 lines
163 B
Nim

try:
spam()
except SillyError:
echo "Got SillyError with message: ", getCurrentExceptionMsg()
except:
echo "Got another exception"
finally:
echo "Finally"