1
2
3
4
5
6
error_chain!{
    foreign_links {
        ParseInt(::std::num::ParseIntError);
        ParseString(::std::string::ParseError);
    }
}