1 // TODO: STL exception handling 2 // Note that the generic std_except.i file did not work 3 %{ 4 #include <stdexcept> 5 %} 6 7 namespace std { 8 %ignore exception; 9 struct exception { 10 }; 11 } 12 13