summary refs log tree commit diff stats
path: root/tests/accept/run/tunhandledexc.nim
blob: 36ba5418d5dd0bdec7331cd152861c1c396918fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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")