//! Authentication related error types. /// Authentication prompt handler error. #[derive(Debug, thiserror::Error)] pub enum AuthPromptHandlerError { /// HTTP server failed to bind to a address. #[error("HTTP server failed to bind to address")] BindAddressFailed, }