Create a client error # Examples ```rust use http_cache::HttpCacheError; let err = HttpCacheError::client("Network timeout"); ```
(error: E)
| 132 | /// let err = HttpCacheError::client("Network timeout"); |
| 133 | /// ``` |
| 134 | pub fn client<E: Into<BoxError>>(error: E) -> Self { |
| 135 | Self::Client(error.into()) |
| 136 | } |
| 137 | |
| 138 | /// Create a generic error |
| 139 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected