summaryrefslogtreecommitdiffstats
path: root/third_party/rust/remote_settings/src/error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/remote_settings/src/error.rs')
-rw-r--r--third_party/rust/remote_settings/src/error.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/third_party/rust/remote_settings/src/error.rs b/third_party/rust/remote_settings/src/error.rs
index 120681871b..32563800f0 100644
--- a/third_party/rust/remote_settings/src/error.rs
+++ b/third_party/rust/remote_settings/src/error.rs
@@ -22,6 +22,8 @@ pub enum RemoteSettingsError {
ResponseError(String),
#[error("This server doesn't support attachments")]
AttachmentsUnsupportedError,
+ #[error("Error configuring client: {0}")]
+ ConfigError(String),
}
pub type Result<T, E = RemoteSettingsError> = std::result::Result<T, E>;