add the %throws directive

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8348 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2006-01-10 10:12:32 +00:00
commit 9916e30489
5 changed files with 112 additions and 0 deletions

View file

@ -24,3 +24,18 @@ except RuntimeError,e:
print "bad exception order",
raise RuntimeError, e.args
try:
a.barfoo(1)
except E1,e:
pass
except:
raise RuntimeError, "bad exception order"
try:
a.barfoo(2)
except E2,e:
pass
except:
raise RuntimeError, "bad exception order"