mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
21 lines
408 B
Nim
21 lines
408 B
Nim
discard """
|
|
outputsub: "Error: unhandled exception: bla [ESomeOtherErr]"
|
|
exitcode: "1"
|
|
"""
|
|
type
|
|
ESomething = object of Exception
|
|
ESomeOtherErr = object of Exception
|
|
|
|
proc genErrors(s: string) =
|
|
if s == "error!":
|
|
raise newException(ESomething, "Test")
|
|
else:
|
|
raise newException(EsomeotherErr, "bla")
|
|
|
|
try:
|
|
genErrors("errssor!")
|
|
except ESomething:
|
|
echo("Error happened")
|
|
except:
|
|
raise
|