steamguard-cli/src/errors.rs

10 lines
212 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,
#[error("Unknown subcommand. It may need to be implemented.")]
UnknownSubcommand,
2022-02-21 18:22:03 +01:00
}