Skip to main content

capability_skeleton_string/
errors.rs

1// ---------------- [ File: capability-skeleton-string/src/errors.rs ]
2crate::ix!();
3
4error_tree! {
5    /// Errors that may arise when converting between string-based skeleton and numeric skeleton.
6    pub enum StringSkeletonError {
7        SkeletonIo(capability_skeleton::SkeletonError),
8        NameCollision,
9        MissingChildName,
10    }
11}