matrix-rust-sdk/matrix_sdk_base/src/error.rs

78 lines
2.7 KiB
Rust
Raw Normal View History

// Copyright 2020 Damir Jelić
// Copyright 2020 The Matrix.org Foundation C.I.C.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2019-10-20 11:56:46 +00:00
//! Error conditions.
use std::io::Error as IoError;
use crate::api::Error as RumaClientError;
use crate::FromHttpResponseError as RumaResponseError;
use crate::IntoHttpError as RumaIntoHttpError;
2019-10-20 11:56:46 +00:00
use reqwest::Error as ReqwestError;
use serde_json::Error as JsonError;
2020-03-18 13:15:56 +00:00
use thiserror::Error;
2019-11-10 17:33:06 +00:00
use url::ParseError;
2019-10-20 11:56:46 +00:00
2020-03-18 13:15:56 +00:00
#[cfg(feature = "encryption")]
use matrix_sdk_crypto::{MegolmError, OlmError};
2019-10-20 11:56:46 +00:00
2020-03-18 13:15:56 +00:00
/// Result type of the rust-sdk.
pub type Result<T> = std::result::Result<T, Error>;
2019-10-20 11:56:46 +00:00
/// Internal representation of errors.
2020-03-18 13:15:56 +00:00
#[derive(Error, Debug)]
pub enum Error {
2019-10-20 11:56:46 +00:00
/// Queried endpoint requires authentication but was called on an anonymous client.
2020-03-18 13:15:56 +00:00
#[error("the queried endpoint requires authentication but was called before logging in")]
2019-10-20 11:56:46 +00:00
AuthenticationRequired,
/// An error at the HTTP layer.
2020-03-18 13:15:56 +00:00
#[error(transparent)]
Reqwest(#[from] ReqwestError),
2019-10-20 11:56:46 +00:00
/// An error when parsing a string as a URI.
2020-03-18 13:15:56 +00:00
#[error("can't parse the provided string as an URL")]
Uri(#[from] ParseError),
2019-10-20 11:56:46 +00:00
/// An error converting between ruma_client_api types and Hyper types.
2020-03-18 13:15:56 +00:00
#[error("can't parse the JSON response as a Matrix response")]
RumaResponse(RumaResponseError<RumaClientError>),
/// An error converting between ruma_client_api types and Hyper types.
2020-03-18 13:15:56 +00:00
#[error("can't convert between ruma_client_api and hyper types.")]
IntoHttp(RumaIntoHttpError),
/// An error de/serializing type for the `StateStore`
#[error(transparent)]
SerdeJson(#[from] JsonError),
/// An error de/serializing type for the `StateStore`
#[error(transparent)]
IoError(#[from] IoError),
2020-03-18 13:15:56 +00:00
#[cfg(feature = "encryption")]
/// An error occurred during a E2EE operation.
2020-03-18 13:15:56 +00:00
#[error(transparent)]
OlmError(#[from] OlmError),
/// An error occurred during a E2EE group operation.
#[error(transparent)]
MegolmError(#[from] MegolmError),
2019-10-20 11:56:46 +00:00
}
impl From<RumaResponseError<RumaClientError>> for Error {
fn from(error: RumaResponseError<RumaClientError>) -> Self {
2020-03-18 13:15:56 +00:00
Self::RumaResponse(error)
}
}
impl From<RumaIntoHttpError> for Error {
fn from(error: RumaIntoHttpError) -> Self {
2020-03-18 13:15:56 +00:00
Self::IntoHttp(error)
2019-10-20 11:56:46 +00:00
}
}