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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// TODO: Come back and document this.
#![allow(missing_docs)]

#[cfg(not(feature = "tls"))]
error_chain! {
    foreign_links {
        Io(::std::io::Error);
        Utf8(::std::string::FromUtf8Error);
    }

    errors { 
        Unexpected {
            description("An unexpected error occurred.")
            display("An unexpected error occurred.")
        }

        ConnectionReset {
            description("The connection was reset by the remote host.")
            display("The connection was reset by the remote host.")
        }
    }

    links {
        Pircolate(::pircolate::error::Error, ::pircolate::error::ErrorKind);
    }
}

#[cfg(feature = "tls")]
error_chain! {
    foreign_links {
        Io(::std::io::Error);
        Tls(::native_tls::Error);
        Utf8(::std::string::FromUtf8Error);
    }

    errors { 
        Unexpected {
            description("An unexpected error occurred.")
            display("An unexpected error occurred.")
        }

        ConnectionReset {
            description("The connection was reset by the remote host.")
            display("The connection was reset by the remote host.")
        }
    }

    links {
        Pircolate(::pircolate::error::Error, ::pircolate::error::ErrorKind);
    }
}