1//! The error types that `fae` can return.
23mod fae_error;
4pub use fae_error::Error;
56mod image_creation_error;
7pub use image_creation_error::ImageCreationError;
89#[cfg(feature = "png")]
10mod image_png_error;
11#[cfg(feature = "png")]
12pub use image_png_error::PngLoadingError;