summaryrefslogtreecommitdiffstats
path: root/lib/core/libimagrt/src/error.rs
blob: 35331c672c4f6cf0b813c6f049d3805d3a797ac8 (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
//
// imag - the personal information management suite for the commandline
// Copyright (C) 2015-2018 Matthias Beyer <mail@beyermatthias.de> and contributors
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; version
// 2.1 of the License.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
//

error_chain! {
    types {
        RuntimeError, RuntimeErrorKind, ResultExt, Result;
    }

    foreign_links {
        IO(::std::io::Error);
        TomlDeError(::toml::de::Error);
        TomlQueryError(::toml_query::error::Error);
        HandlebarsTemplateError(::handlebars::TemplateError);
    }

    errors {
        Instantiate {
            description("Could not instantiate")
            display("Could not instantiate")
        }

        IOError {
            description("IO Error")
            display("IO Error")
        }

        ProcessExitFailure {
            description("Process exited with failure")
            display("Process exited with failure")
        }

        IOLogFileOpenError {
            description("IO Error: Could not open logfile")
            display("IO Error: Could not open logfile")
        }

        ConfigTypeError(path: String, should_be_type: &'static str) {
            description("Error while reading the configuration: Type Error")
            display("Type Error: '{}' should be '{}'", path, should_be_type)
        }

        GlobalLogLevelConfigMissing {
            description("Global config 'imag.logging.level' missing")
            display("Global config 'imag.logging.level' missing")
        }

        GlobalDestinationConfigMissing {
            description("Global config 'imag.logging.destinations' missing")
            display("Global config 'imag.logging.destinations' missing")
        }

        InvalidLogLevelSpec {
            description("Invalid log level specification: Only 'trace', 'debug', 'info', 'warn', 'error' are allowed")
            display("Invalid log level specification: Only 'trace', 'debug', 'info', 'warn', 'error' are allowed")
        }

        ConfigMissingLoggingFormatTrace {
            description("Missing config for logging format for trace logging")
            display("Missing config for logging format for trace logging")
        }

        ConfigMissingLoggingFormatDebug {
            description("Missing config for logging format for debug logging")
            display("Missing config for logging format for debug logging")
        }

        ConfigMissingLoggingFormatInfo {
            description("Missing config for logging format for info logging")
            display("Missing config for logging format for info logging")
        }

        ConfigMissingLoggingFormatWarn {
            description("Missing config for logging format for warn logging")
            display("Missing config for logging format for warn logging")
        }

        ConfigMissingLoggingFormatError {
            description("Missing config for logging format for error logging")
            display("Missing config for logging format for error logging")
        }

        ConfigTOMLParserError {
            description("Configuration: TOML Parsing error")
            display("Configuration: TOML Parsing error")
        }

        ConfigNoConfigFileFound   {
            description("Configuration: No config file found")
            display("Configuration: No config file found")
        }

        ConfigOverrideError {
            description("Configuration: Config override error")
            display("Configuration: Config override error")
        }

        ConfigOverrideKeyNotAvailable {
            description("Configuration: Key not available")
            display("Configuration: Key not available")
        }

        ConfigOverrideTypeNotMatching {
            description("Configuration: Configuration Type not matching")
            display("Configuration: Configuration Type not matching")
        }

    }
}