diff options
Diffstat (limited to 'src/errors/client.rs')
| -rw-r--r-- | src/errors/client.rs | 10 | 
1 files changed, 10 insertions, 0 deletions
| 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, | 
