mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00
25 lines
902 B
Rust
25 lines
902 B
Rust
use thiserror::Error;
|
|
|
|
#[allow(clippy::enum_variant_names)]
|
|
#[derive(Error, Debug)]
|
|
pub enum DomainError {
|
|
#[error("Authentication error: `{0}`")]
|
|
AuthenticationError(String),
|
|
#[error("Database error: `{0}`")]
|
|
DatabaseError(#[from] sea_orm::DbErr),
|
|
#[error("Authentication protocol error for `{0}`")]
|
|
AuthenticationProtocolError(#[from] lldap_auth::opaque::AuthenticationError),
|
|
#[error("Unknown crypto error: `{0}`")]
|
|
UnknownCryptoError(#[from] orion::errors::UnknownCryptoError),
|
|
#[error("Binary serialization error: `{0}`")]
|
|
BinarySerializationError(#[from] bincode::Error),
|
|
#[error("Invalid base64: `{0}`")]
|
|
Base64DecodeError(#[from] base64::DecodeError),
|
|
#[error("Entity not found: `{0}`")]
|
|
EntityNotFound(String),
|
|
#[error("Internal error: `{0}`")]
|
|
InternalError(String),
|
|
}
|
|
|
|
pub type Result<T> = std::result::Result<T, DomainError>;
|