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 = std::result::Result;