1//! Git Interactive Rebase Tool - Todo File Module Errors
2//!
3//! # Description
4//! This module contains error types used in the Todo File Module.
56mod io;
7mod parse;
89pub use self::{
10 io::{FileReadErrorCause, IoError},
11 parse::ParseError,
12};