Skip to main content

character_traits_ethical_framework/
error.rs

1// ---------------- [ File: character-traits-ethical-framework/src/error.rs ]
2crate::ix!();
3
4error_tree! {
5    pub enum EthicalFrameworkProfileBuildError {
6        MissingCorePrinciple,
7        /// The attribute set may legitimately be empty, but the **Option**
8        /// itself must be supplied by the builder.
9        MissingAttributeSet,
10    }
11}