summary refs log blame commit diff stats
path: root/tests/accept/run/tunhandledexc.nim
blob: c60de22348b5a2a01b2223d6ced933b2ec94aac9 (plain) (tree)
1
2
3
4



                                                           















                                            

 
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")