1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#![cfg_attr(feature = "cargo-clippy", allow(module_inception))]

//! Errors for printpdf

pub mod errors;
pub mod pdf_error;
pub mod index_error;

pub use self::errors::*;
pub use self::pdf_error::ErrorKind::*;
pub use self::index_error::*;
pub use self::errors::ErrorKind::*;