batch_mode_json/
errors.rs

1// ---------------- [ File: src/errors.rs ]
2crate::ix!();
3
4error_tree!{
5
6    #[derive(PartialEq)]
7    pub enum JsonParseError {
8
9        JsonRepairError(JsonRepairError),
10
11        InvalidJson,
12
13        #[cmp_neq]
14        SerdeError(serde_json::Error),
15
16        #[cmp_neq]
17        IoError(std::io::Error),
18    }
19}