()
| 207 | """Tests nested (e.g. C++ -> Python -> C++) exception handling""" |
| 208 | |
| 209 | def throw_myex(): |
| 210 | raise m.MyException("nested error") |
| 211 | |
| 212 | def throw_myex5(): |
| 213 | raise m.MyException5("nested error 5") |
nothing calls this directly
no test coverage detected