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:
parent
16992b9291
commit
9916e30489
5 changed files with 112 additions and 0 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue