From e734cd32bae2a828cbc593ae9f4546873b33752c Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Fri, 13 Jan 2006 23:37:50 +0000 Subject: [PATCH] use the file in the directory above instead - removed git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8419 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- .../test-suite/python/li_std_except.i | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 SWIG/Examples/test-suite/python/li_std_except.i diff --git a/SWIG/Examples/test-suite/python/li_std_except.i b/SWIG/Examples/test-suite/python/li_std_except.i deleted file mode 100644 index 57c753d53..000000000 --- a/SWIG/Examples/test-suite/python/li_std_except.i +++ /dev/null @@ -1,21 +0,0 @@ -%module li_std_except - -%include - - -%inline %{ - struct E1 : public std::exception - { - }; - - struct E2 - { - }; - - struct Test { - int foo1() throw(std::bad_exception) { return 0; } - int foo2() throw(std::logic_error) { return 0; } - int foo3() throw(E1) { return 0; } - int foo4() throw(E2) { return 0; } - }; -%}