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