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")] #[statuscode(NOTFOUND)] ResourceNotFound,
#[error("Forbidden: {reason}")]
#[status_code(FORBIDDEN)]
Forbidden { reason: String },
// Internal Server Error
#[error(transparent)]
#[serde(skip)]
IoError(#[from] std::io::Error),
} ```
```rust
pub struct InvalidCredentials; ```
actix_web::http::StatusCode
) are specified with #[status_code(...)]
attribute#[status_code(...)]
attribute return Internal Server Error with empty bodyerror.to_string()
)json
{
"error": "error",
"message": "error.to_string()",
}