From c71ff70ffec328935b9ca4492e313b4a480d7ec7 Mon Sep 17 00:00:00 2001 From: HampusM Date: Fri, 9 Sep 2022 20:34:03 +0200 Subject: fix: handle get auth token errors --- src/errors/client.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/errors') diff --git a/src/errors/client.rs b/src/errors/client.rs index c3397e3..6eb7e68 100644 --- a/src/errors/client.rs +++ b/src/errors/client.rs @@ -18,6 +18,16 @@ pub enum DeezerClientError #[error("Received a error response from the Deezer API")] ReceivedErrorResponse(DeezerError), + /// Received a authentication error response from the Deezer. + #[error("Received a authentication error response from the Deezer")] + ReceivedAuthErrorResponse(String), + + /// Received a authentication error response from the Deezer that's not valid UTF-8. + #[error( + "Received a authentication error response from the Deezer that's not valid UTF-8" + )] + AuthErrorResponseNotUTF8, + /// Failed to build API endpoint URI. #[error("Failed to build API endpoint URI")] BuildAPIEndpointURIFailed, -- cgit v1.2.3-18-g5258