mirror of
https://github.com/boostorg/python.git
synced 2026-01-20 16:52:15 +00:00
26 lines
462 B
C++
26 lines
462 B
C++
#include <boost/python/module.hpp>
|
|
#include <boost/python/exception_translator.hpp>
|
|
|
|
struct error {};
|
|
|
|
void translate(error const& e)
|
|
{
|
|
PyErr_SetString(PyExc_RuntimeError, "!!!error!!!");
|
|
}
|
|
|
|
void throw_error()
|
|
{
|
|
throw error();
|
|
|
|
}
|
|
|
|
BOOST_PYTHON_MODULE_INIT(exception_translator_ext)
|
|
{
|
|
using namespace boost::python;
|
|
|
|
register_exception_translator<error>(&translate);
|
|
module("exception_translator_ext")
|
|
.def("throw_error", throw_error);
|
|
}
|
|
|