Home
last modified time | relevance | path

Searched refs:MyException3 (Results 1 – 1 of 1) sorted by relevance

/external/python/pybind11/tests/
Dtest_exceptions.cpp31 class MyException3 { class
33 explicit MyException3(const char * m) : message{m} {} in MyException3() function in MyException3
36 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()