1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-19 22:24:40 +01:00
actix-web/awc/src/error.rs

82 lines
2.2 KiB
Rust
Raw Normal View History

2021-02-15 12:20:43 +00:00
//! HTTP client errors
pub use actix_http::{
error::{HttpError, PayloadError},
header::HeaderValue,
ws::{HandshakeError as WsHandshakeError, ProtocolError as WsProtocolError},
StatusCode,
};
use derive_more::{Display, From};
2019-04-01 11:51:18 -07:00
use serde_json::error::Error as JsonError;
pub use crate::client::{ConnectError, FreezeRequestError, InvalidUrl, SendRequestError};
2021-12-04 19:40:47 +00:00
// TODO: address display, error, and from impls
/// Websocket client error
2018-12-19 18:34:56 -08:00
#[derive(Debug, Display, From)]
2019-03-27 18:53:19 -07:00
pub enum WsClientError {
/// Invalid response status
2018-12-19 18:34:56 -08:00
#[display(fmt = "Invalid response status")]
InvalidResponseStatus(StatusCode),
2021-02-28 19:55:34 +00:00
/// Invalid upgrade header
2018-12-19 18:34:56 -08:00
#[display(fmt = "Invalid upgrade header")]
InvalidUpgradeHeader,
2021-02-28 19:55:34 +00:00
/// Invalid connection header
2018-12-19 18:34:56 -08:00
#[display(fmt = "Invalid connection header")]
InvalidConnectionHeader(HeaderValue),
2021-02-28 19:55:34 +00:00
/// Missing Connection header
#[display(fmt = "Missing Connection header")]
MissingConnectionHeader,
2021-02-28 19:55:34 +00:00
/// Missing Sec-Websocket-Accept header
#[display(fmt = "Missing Sec-Websocket-Accept header")]
MissingWebSocketAcceptHeader,
2021-02-28 19:55:34 +00:00
/// Invalid challenge response
2018-12-19 18:34:56 -08:00
#[display(fmt = "Invalid challenge response")]
2021-02-28 19:55:34 +00:00
InvalidChallengeResponse([u8; 28], HeaderValue),
/// Protocol error
2018-12-19 18:34:56 -08:00
#[display(fmt = "{}", _0)]
2019-03-27 18:53:19 -07:00
Protocol(WsProtocolError),
2021-02-28 19:55:34 +00:00
2019-03-27 18:53:19 -07:00
/// Send request error
2018-12-19 18:34:56 -08:00
#[display(fmt = "{}", _0)]
2019-03-27 18:53:19 -07:00
SendRequest(SendRequestError),
}
impl std::error::Error for WsClientError {}
2019-03-27 18:53:19 -07:00
impl From<InvalidUrl> for WsClientError {
fn from(err: InvalidUrl) -> Self {
WsClientError::SendRequest(err.into())
}
}
impl From<HttpError> for WsClientError {
fn from(err: HttpError) -> Self {
WsClientError::SendRequest(err.into())
}
}
2019-04-01 11:51:18 -07:00
/// A set of errors that can occur during parsing json payloads
#[derive(Debug, Display, From)]
pub enum JsonPayloadError {
/// Content type error
#[display(fmt = "Content type error")]
ContentType,
/// Deserialize error
#[display(fmt = "Json deserialize error: {}", _0)]
Deserialize(JsonError),
/// Payload error
#[display(fmt = "Error that occur during reading payload: {}", _0)]
Payload(PayloadError),
}
impl std::error::Error for JsonPayloadError {}