//! Parse error type.
/// Why parsing `shakrs.json` failed.
#[derive(Debug, Clone)]pubenumConfigParseError{/// Not valid JSON, or valid JSON that violates the schema.
Schema(String),/// Parsed and schema-valid, but a semantic rule failed.
Semantic(String),}