steamguard-cli/src/errors.rs
2022-06-19 12:45:33 -04:00

9 lines
212 B
Rust

use thiserror::Error;
#[derive(Debug, Error)]
pub(crate) enum UserError {
#[error("User aborted the operation.")]
Aborted,
#[error("Unknown subcommand. It may need to be implemented.")]
UnknownSubcommand,
}