xml_rpc/
error.rs

1#![allow(unknown_lints, unused_doc_comments)]
2pub use super::xmlfmt::error::{Error as FmtError, ErrorKind as FmtErrorKind};
3
4error_chain! {
5    links {
6        XmlFormat(FmtError, FmtErrorKind);
7    }
8    errors {
9        BindFail(details: String) {
10            description("Failed to bind XML-RPC server to port")
11            display("Failed to bind XML-RPC server to port: {}", details)
12        }
13    }
14}