1 2 3 4 5 6
use pyo3::{create_exception, exceptions::PyException}; pub mod arrow_loaders; create_exception!(exceptions, ArrowErrorException, PyException); create_exception!(exceptions, GraphLoadException, PyException);