blob: 656673e7bb5dcc59b8f74b79f9acfd5096ffe2b7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//! 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,
}
|