blob: aa9d61236bc2a8c1330caa9558247c0f2fc5b0e7 (
plain) (
tree)
|
|
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:
genErrors("errssor!")
except ESomething:
echo("Error happened")
|