1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//! Error chain created using [error-chain](https://crates.io/crates/error-chain).
//!
//! It can be chained with the very same crate if desired for error handling.

use error_chain::error_chain;

error_chain! {
	links
	{
	}

	foreign_links
	{
		Io(::std::io::Error);
		XmlParser(::roxmltree::Error);
		NumberParsing(::std::num::ParseIntError);
		CommandLineParsing(::clap::Error);
		LineEditing(::rustyline::error::ReadlineError);
		ShellSyntax(::shell_words::ParseError);
	}

	errors
	{
	}
}