mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00
14 lines
416 B
Rust
14 lines
416 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum Error {
|
|
#[error("Authentication error for `{0}`")]
|
|
AuthenticationError(String),
|
|
#[error("Database error: `{0}`")]
|
|
DatabaseError(#[from] sqlx::Error),
|
|
#[error("Authentication protocol error for `{0}`")]
|
|
AuthenticationProtocolError(#[from] lldap_model::opaque::AuthenticationError),
|
|
}
|
|
|
|
pub type Result<T> = std::result::Result<T, Error>;
|