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

                           
                                                              
   















                                            

 
discard """
  file: "tunhandledexc.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")

when True:
  try:
    genErrors("errssor!")
  except ESomething:
    echo("Error happened")