From 4836108926b196d9635d8fe8032a132824c09ae2 Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Tue, 14 Jul 2026 20:11:04 -0400 Subject: [PATCH] Add HTTP server error variant --- src/util/error.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/util/error.rs b/src/util/error.rs index 3d585a0..b55f232 100644 --- a/src/util/error.rs +++ b/src/util/error.rs @@ -327,6 +327,9 @@ pub enum ErrorType { // and Fred is only available on the server #[error("Key-value store error: {0}")] KeyValStore(String), + + #[error("HTTP server error: {0}")] + HttpServer(String), } impl From for Error {