summaryrefslogtreecommitdiff
path: root/src/errors/auth.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/errors/auth.rs')
-rw-r--r--src/errors/auth.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/errors/auth.rs b/src/errors/auth.rs
index cd4741d..656673e 100644
--- a/src/errors/auth.rs
+++ b/src/errors/auth.rs
@@ -8,16 +8,3 @@ pub enum AuthPromptHandlerError
#[error("HTTP server failed to bind to address")]
BindAddressFailed,
}
-
-/// Access token request error.
-#[derive(Debug, thiserror::Error)]
-pub enum AccessTokenRequestError
-{
- /// Sending access token request failed.
- #[error("Sending access token request failed")]
- SendFailed(#[from] reqwest::Error),
-
- /// Parsing access token respone failed.
- #[error("Parsing access token respone failed")]
- ResponseParseFailed,
-}