12 lines
347 B
Rust
12 lines
347 B
Rust
generate_error_module!(
|
|
generate_error_types!(ListError, ListErrorKind,
|
|
FormatError => "FormatError",
|
|
EntryError => "EntryError",
|
|
IterationError => "IterationError",
|
|
CLIError => "No CLI subcommand for listing entries"
|
|
);
|
|
);
|
|
|
|
pub use self::error::ListError;
|
|
pub use self::error::ListErrorKind;
|
|
|