12 lines
348 B
Rust
12 lines
348 B
Rust
generate_error_module!(
|
|
generate_error_types!(EditError, EditErrorKind,
|
|
IOError => "IO Error",
|
|
ProcessExitFailure => "Process did not exit properly",
|
|
InstantiateError => "Instantation error"
|
|
);
|
|
);
|
|
|
|
pub use self::error::EditError;
|
|
pub use self::error::EditErrorKind;
|
|
pub use self::error::MapErrInto;
|
|
|