python defines it owns mechanism in python/std_except.i
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7547 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
86984eb3d9
commit
a99f08ac90
1 changed files with 0 additions and 15 deletions
|
|
@ -13,23 +13,8 @@
|
|||
%typemap(throws, canthrow=1) std::invalid_argument %{
|
||||
SWIG_CSharpSetPendingExceptionArgument(SWIG_CSharpArgumentException, $1.what(), "");
|
||||
return $null; %}
|
||||
#elif defined(SWIGPYTHON)
|
||||
%include "exception.i"
|
||||
%typemap(throws) std::out_of_range %{
|
||||
if (!PyErr_Occurred()) {
|
||||
SWIG_exception(SWIG_IndexError, $1.what());
|
||||
} else {
|
||||
SWIG_fail;
|
||||
} %}
|
||||
%typemap(throws) std::invalid_argument %{
|
||||
if (!PyErr_Occurred()) {
|
||||
SWIG_exception(SWIG_TypeError, $1.what());
|
||||
} else {
|
||||
SWIG_fail;
|
||||
} %}
|
||||
#else
|
||||
%include "exception.i"
|
||||
%typemap(throws) std::out_of_range %{
|
||||
SWIG_exception(SWIG_IndexError, $1.what()); %}
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue