1/// This type represents all possible errors that can occur when generate or write JSON Schema string.
2///
3#[derive(Debug, thiserror::Error)]
4pub enum Error {
5#[error(transparent)]
6IoError(#[from] std::io::Error),
78#[error(transparent)]
9SerdeJsonError(#[from] serde_json::Error),
10}