From 14968097b28919f7e1f71ec5e49b30191826fa33 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Mon, 22 Aug 2022 16:06:28 +0200 Subject: Sqlx connection --- server/src/errors.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'server/src/errors.rs') diff --git a/server/src/errors.rs b/server/src/errors.rs index cf59d0c..dc0468e 100644 --- a/server/src/errors.rs +++ b/server/src/errors.rs @@ -7,6 +7,7 @@ use serde_json::json; pub enum AppError { Generic, + Database, } impl IntoResponse for AppError { @@ -16,6 +17,10 @@ impl IntoResponse for AppError { StatusCode::INTERNAL_SERVER_ERROR, "Generic error, can't find why", ), + AppError::Database => ( + StatusCode::INTERNAL_SERVER_ERROR, + "Error with database connection", + ), }; let body = Json(json!({ @@ -25,3 +30,9 @@ impl IntoResponse for AppError { (status, body).into_response() } } + +impl From for AppError { + fn from(_error: sqlx::Error) -> AppError { + AppError::Database + } +} -- cgit v1.2.3-18-g5258