steamguard-cli/src/errors.rs

8 lines
128 B
Rust
Raw Normal View History

use thiserror::Error;
#[derive(Debug, Error)]
pub(crate) enum UserError {
#[error("User aborted the operation.")]
2022-02-21 18:22:03 +01:00
Aborted,
}