diff --git a/src/util/error.rs b/src/util/error.rs index 57efcd7..663dab8 100644 --- a/src/util/error.rs +++ b/src/util/error.rs @@ -242,6 +242,8 @@ impl> Contextualize for E { #[derive(Debug, Clone, thiserror::Error, Deserialize, Serialize)] pub enum ErrorType { + #[error("{0}")] + Error(String), } impl From for Error {