imag/libimagbookmark/src/error.rs

13 lines
357 B
Rust
Raw Normal View History

2016-05-12 13:28:24 +00:00
generate_error_module!(
generate_error_types!(BookmarkError, BookmarkErrorKind,
StoreReadError => "Store read error",
LinkError => "Link error",
CollectionNotFound => "Link-Collection not found"
2016-05-12 13:28:24 +00:00
);
);
pub use self::error::BookmarkError;
pub use self::error::BookmarkErrorKind;
pub use self::error::MapErrInto;