blob: 42477c0d53b169e4ec545d7112c9166089af4201 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
use axum::{response::{Response, IntoResponse}, body::{boxed, self}};
use hyper::StatusCode;
use thiserror::Error;
#[derive(Debug, Error)]
pub enum ServiceError {
#[error("Solarlib error: {0}")]
Solarlib(#[from] solarlib::errors::Error),
#[error("Axum error: {0}")]
Axum(#[from] axum::Error),
#[error("SQL error: {0}")]
Sql(#[from] sqlx::Error),
}
pub type StringResult<T = &'static str> = Result<T, ServiceError>;
pub type JsonResult<T> = Result<T, ServiceError>;
impl IntoResponse for ServiceError {
fn into_response(self) -> Response {
let body = body::boxed(body::Full::from(self.to_string()));
Response::builder()
.status(StatusCode::INTERNAL_SERVER_ERROR)
.body(body)
.unwrap()
}
}
|