9 lines
163 B
Nim
9 lines
163 B
Nim
|
|
try:
|
||
|
|
spam()
|
||
|
|
except SillyError:
|
||
|
|
echo "Got SillyError with message: ", getCurrentExceptionMsg()
|
||
|
|
except:
|
||
|
|
echo "Got another exception"
|
||
|
|
finally:
|
||
|
|
echo "Finally"
|