diff options
Diffstat (limited to 'src/errors.rs')
-rw-r--r-- | src/errors.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/errors.rs b/src/errors.rs index c1d6672..d4b365f 100644 --- a/src/errors.rs +++ b/src/errors.rs @@ -15,6 +15,9 @@ pub enum ServiceError { #[error("Not Found")] NotFound, + + #[error("Not Authorized")] + NotAuthorized, } pub type StringResult<T = &'static str> = Result<T, ServiceError>; @@ -27,6 +30,7 @@ impl IntoResponse for ServiceError { let status = match self { ServiceError::NotFound => StatusCode::NOT_FOUND, + ServiceError::NotAuthorized => StatusCode::UNAUTHORIZED, _ => StatusCode::INTERNAL_SERVER_ERROR, }; |