File size: 152 Bytes
f14b4e9 | 1 2 3 4 5 6 7 8 9 | /// The errors that can occur when using the CLI.
#[derive(Debug)]
pub enum CliError {
BuildError,
FileError,
QueryError,
InputError,
}
|
f14b4e9 | 1 2 3 4 5 6 7 8 9 | /// The errors that can occur when using the CLI.
#[derive(Debug)]
pub enum CliError {
BuildError,
FileError,
QueryError,
InputError,
}
|