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
//! Error definictions combining *Json*, *Hyper*, *IO* and *Api* Errors.
//! This is generated using [error-chain](https://crates.io/crates/error-chain).

use json;
use hyper;
use std::io;

error_chain!{

    types {
        Error, ErrorKind, ChainErr, Result;
    }

    links {
    }

    foreign_links {
        json::Error, Json;
        hyper::Error, Hyper;
        io::Error, Io;
    }

    errors {
        ApiError{
            description("unexpected response from service")
        }
    }
}