2022-02-21 17:57:19 +01:00
|
|
|
use thiserror::Error;
|
|
|
|
|
|
|
|
#[derive(Debug, Error)]
|
|
|
|
pub(crate) enum UserError {
|
|
|
|
#[error("User aborted the operation.")]
|
2022-02-21 18:22:03 +01:00
|
|
|
Aborted,
|
2022-06-19 18:45:33 +02:00
|
|
|
#[error("Unknown subcommand. It may need to be implemented.")]
|
|
|
|
UnknownSubcommand,
|
2022-02-21 18:22:03 +01:00
|
|
|
}
|