imag/libimaginteraction/src/error.rs

9 lines
190 B
Rust
Raw Normal View History

2016-04-12 14:40:25 +00:00
use std::error::Error;
use std::fmt::Error as FmtError;
use std::fmt::{Display, Formatter};
generate_error_types!(InteractionError, InteractionErrorKind,
Unknown => "Unknown Error"
);
2016-04-12 14:40:25 +00:00