summaryrefslogtreecommitdiffstats
path: root/src/routes/error.rs
blob: 3813998c2aa0dfa191b9d5080eb20980191923d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
use poem::{IntoResponse, Response};

use crate::{ructe_poem::render, templates};

pub async fn error(err: poem::Error) -> Response {
    let status = err.status().to_string();
    let message = err.to_string();
    render!(templates::error_html, &status, &message).into_response()
}