imag/libimagentrylist/src/error.rs

12 lines
320 B
Rust
Raw Normal View History

2016-03-26 13:41:34 +00:00
use std::error::Error;
use std::fmt::Error as FmtError;
use std::fmt::{Display, Formatter};
generate_error_types!(ListError, ListErrorKind,
FormatError => "FormatError",
EntryError => "EntryError",
IterationError => "IterationError",
CLIError => "No CLI subcommand for listing entries"
);
2016-03-26 13:41:34 +00:00