summary refs log blame commit diff stats
path: root/tests/exception/treraise.nim
blob: b2a11d34f2e5b718812cd99f6032434963b542e3 (plain) (tree)
1
2
3
4
5
6
7
8

                      
                                                              
               
   
    

                                     






                                            






                        

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

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