2022-05-24 10:16:39 +00:00
|
|
|
use err_derive::Error;
|
|
|
|
|
|
|
|
use crate::common_error::CommonError;
|
|
|
|
pub use crate::common_error::{CommonErrorDerivative, OkOrBadRequest, OkOrInternalError};
|
|
|
|
|
|
|
|
/// Errors of this crate
|
|
|
|
#[derive(Debug, Error)]
|
|
|
|
pub enum Error {
|
|
|
|
#[error(display = "{}", _0)]
|
|
|
|
/// Error from common error
|
|
|
|
Common(CommonError),
|
|
|
|
|
|
|
|
/// Authorization Header Malformed
|
2023-02-02 16:16:12 +00:00
|
|
|
#[error(display = "Authorization header malformed, unexpected scope: {}", _0)]
|
2022-05-24 10:16:39 +00:00
|
|
|
AuthorizationHeaderMalformed(String),
|
|
|
|
|
|
|
|
// Category: bad request
|
|
|
|
/// The request contained an invalid UTF-8 sequence in its path or in other parameters
|
|
|
|
#[error(display = "Invalid UTF-8: {}", _0)]
|
|
|
|
InvalidUtf8Str(#[error(source)] std::str::Utf8Error),
|
|
|
|
|
|
|
|
/// The client sent a header with invalid value
|
|
|
|
#[error(display = "Invalid header value: {}", _0)]
|
|
|
|
InvalidHeader(#[error(source)] hyper::header::ToStrError),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> From<T> for Error
|
|
|
|
where
|
|
|
|
CommonError: From<T>,
|
|
|
|
{
|
|
|
|
fn from(err: T) -> Self {
|
|
|
|
Error::Common(CommonError::from(err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl CommonErrorDerivative for Error {}
|