blob: 71736b512af25df0dceee9183b52ebd0df34d025 (
plain) (
tree)
|
|
discard """
file: "treraise.nim"
outputsub: "Error: unhandled exception: bla [ESomeOtherErr]"
"""
type
ESomething = object of E_Base
ESomeOtherErr = object of E_Base
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
|