aboutsummaryrefslogtreecommitdiffstats
path: root/src/error.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-10-27 22:20:33 -0400
committerJesse Luehrs <doy@tozt.net>2021-10-27 22:35:30 -0400
commita6df5378b91516aabbb5643e41e688a0dc1aaeb7 (patch)
tree87eed969fd4ce9563d57147c1c2b772fe88ee21b /src/error.rs
parent5d0e308c1c57bea30d2ad9008b6dbc7936d58645 (diff)
downloadrbw-a6df5378b91516aabbb5643e41e688a0dc1aaeb7.tar.gz
rbw-a6df5378b91516aabbb5643e41e688a0dc1aaeb7.zip
add a useful error message if registration is required
Diffstat (limited to 'src/error.rs')
-rw-r--r--src/error.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/error.rs b/src/error.rs
index 5eb4b4b..d584e53 100644
--- a/src/error.rs
+++ b/src/error.rs
@@ -135,6 +135,9 @@ pub enum Error {
#[error("error waiting for pinentry to exit")]
PinentryWait { source: tokio::io::Error },
+ #[error("This device has not yet been registered with the Bitwarden server. Run `rbw register` first, and then try again.")]
+ RegistrationRequired,
+
#[error("failed to remove db at {}", .file.display())]
RemoveDb {
source: std::io::Error,