summaryrefslogtreecommitdiffstats
path: root/src/error.rs
blob: d772e5ebe3a3a7048985cd06acc661e2055bd656 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error_chain! {

    types {
        VObjectError, VObjectErrorKind, ResultExt, Result;
    }

    errors {
        ParserError(desc: String) {
            description("Parser error")
            display("{}", desc)
        }
    }


}