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, }