prima_bridge 0.29.0

A library to implement the bridge pattern
Documentation
use thiserror::Error;

use super::cache;

#[derive(Debug, Error)]
pub enum Auth0Error {
    #[error(transparent)]
    SerdeError(#[from] serde_json::Error),
    #[error("received bad status code while getting token: {0}")]
    JwtFetchAuthError(u16),
    #[error("failed to fetch jwt from {0}. Status code: {0}; error: {1}")]
    JwtFetchError(u16, String, reqwest::Error),
    #[error("failed to deserialize jwt from {0}. {1}")]
    JwtFetchDeserializationError(String, reqwest::Error),
    #[error("failed to fetch jwt from {0}. Status code: {0}; error: {1}")]
    JwksHttpError(String, reqwest::Error),
    #[error("cache error: {0}")]
    CacheError(#[from] cache::CacheError),
    #[error(transparent)]
    CryptoError(#[from] chacha20poly1305::Error),
}