summaryrefslogtreecommitdiffstats
path: root/src/error.rs
blob: 6258c10e11475680fb3dafbcbffe54b21d5306fe (plain)
1
2
3
4
5
6
7
8
9
10
error_chain! {
    errors {
        ConfigParseError(filename: String) {
            description("configuration file could not be parsed"),
            display("configuration file could not be parsed: '{}'", filename),
        }
    }
}