A convenient derive macro for actix_web::ResponseError
trait.
```rust use awred::ResponseError; use serde::Serialize; use thiserror::Error;
pub enum AnError { #[error("Requested resource was not found")] #[response(NOT_FOUND)] ResourceNotFound,
#[error("Forbidden: {reason}")]
#[response(FORBIDDEN)]
Forbidden { reason: String },
// Internal Server Error
#[error(transparent)]
#[serde(skip)]
IoError(#[from] std::io::Error),
} ```
actix_web::http::StatusCode
) are specified in #[response(...)]
attribute#[response(...)]
attribute return Internal Server Error with empty bodyerror.to_string()
)json
{
"error": "error",
"message": "error.to_string()",
}