Skip to main content

greentic_dw_reflection/
error.rs

1use thiserror::Error;
2
3#[derive(Debug, Clone, PartialEq, Eq, Error)]
4pub enum ReflectionError {
5    #[error("validation error: {0}")]
6    Validation(String),
7    #[error("provider error: {0}")]
8    Provider(String),
9}