1use thiserror::Error; 2 3#[derive(Debug, Error, PartialEq)] 4pub enum PrettyFormatError { 5 #[error("{0}")] 6 Configuration(String), 7}