Files
Nim/tests/exception/tunhandledexc.nim
2016-08-27 16:52:08 +03:00

23 lines
471 B
Nim

discard """
file: "tunhandledexc.nim"
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")
when true:
try: discard except: discard
try:
genErrors("errssor!")
except ESomething:
echo("Error happened")