use rocket::{http::Status, response::status::Custom}; pub fn to_internal_error(e: E) -> Custom { Custom(Status::InternalServerError, format!("Error: {}", e)) }