pyo3_async_runtimes/
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_async_runtimes, RustPanic, PyException);
7}
8
9pub use exceptions::RustPanic;