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

                           
                                                              
               
   
    

                                     






                                            
          

                              



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

when true:
  try: discard except: discard

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