ot_tools_io/errors.rs
1/*
2SPDX-License-Identifier: GPL-3.0-or-later
3Copyright © 2024 Mike Robeson [dijksterhuis]
4*/
5
6//! Re-exports of all custom error types in the library. You shouldn't need these unless you're
7//! operating with lower level functions / methods / types (the [`crate::OtToolsIoError`]
8//! type implements `From` for all these types).
9
10pub use crate::markers::MarkersError;
11pub use crate::projects::{ProjectError, ProjectParseError};
12pub use crate::samples::SampleSettingsError;
13pub use crate::settings::InvalidValueError;
14pub use crate::slices::SliceError;