blob: c60de22348b5a2a01b2223d6ced933b2ec94aac9 (
plain) (
tree)
|
|
discard """
file: "tunhandledexc.nim"
output: "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")
when True:
try:
genErrors("errssor!")
except ESomething:
echo("Error happened")
|