Searched refs:MyException3 (Results 1 – 1 of 1) sorted by relevance
31 class MyException3 { class33 explicit MyException3(const char * m) : message{m} {} in MyException3() function in MyException336 MyException3(const MyException3&) = default;37 MyException3(MyException3&&) = default;38 MyException3& operator=(const MyException3&) = default;39 MyException3& operator=(MyException3&&) = default;40 virtual ~MyException3() = default;140 m.def("throws3", []() { throw MyException3("this error cannot be translated"); }); in TEST_SUBMODULE()