1error_chain! {
2 types {
3 Error, ErrorKind, ResultExt;
4 }
5
6 foreign_links {
7 Io(::std::io::Error);
8 }
9
10 errors {
11 InvalidToolchainName(t: String) {
12 description("invalid toolchain name")
13 display("invalid toolchain name: '{}'", t)
14 }
15 }
16}
17