use Display;
/// This is a wrapper for all errors. The error must implement display at least.
/// Usage:
/// ```
/// use actix_web_utils::enums::error::Error;
/// use actix_web_utils::extensions::generic_error::GenericError;
/// let generic_error = GenericError::wrap(Error::Unspecified);
/// //Use it as you please
/// ```