9 lines
212 B
Rust
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,
|
|
}
|