libpt_cli/repl/
error.rs

1//! Errors for the Repl module
2
3use thiserror::Error;
4
5#[derive(Error, Debug)]
6pub enum Error {
7    #[error(transparent)]
8    Parsing(#[from] clap::Error),
9    #[error(transparent)]
10    Input(#[from] dialoguer::Error),
11    #[error(transparent)]
12    Other(#[from] anyhow::Error),
13}