pyo3_asyncio/
err.rs

1// FIXME - is there a way to document custom PyO3 exceptions?
2#[allow(missing_docs)]
3mod exceptions {
4    use pyo3::{create_exception, exceptions::PyException};
5
6    create_exception!(pyo3_asyncio, RustPanic, PyException);
7}
8
9pub use exceptions::RustPanic;