steamguard-cli/src/errors.rs

7 lines
126 B
Rust
Raw Normal View History

use thiserror::Error;
#[derive(Debug, Error)]
pub(crate) enum UserError {
#[error("User aborted the operation.")]
Aborted
}