Handling search of config file in multiple directories, additional debug messages
[vlp.git] / src / global / vlp / exception / ConfigFileNotFound.h
1 #ifndef __VLP_EXCEPTION_CONFIGFILENOTFOUND_H
2 #define __VLP_EXCEPTION_CONFIGFILENOTFOUND_H
3
4 #include <stdexcept>
5
6 /**
7  * @file
8  * @author Rafał Długołęcki
9  */
10
11 namespace loglan {
12 namespace vlp {
13 namespace exception {
14
15 /**
16  * Exception thrwon when configuration file has not been found
17  */
18 class ConfigFileNotFound : public std::runtime_error
19 {
20 public:
21         ConfigFileNotFound() :
22                 std::runtime_error("Configuration file has not been found") {
23         }
24 };
25
26 }
27 }
28 }
29
30 #endif /* __VLP_EXCEPTION_CONFIGFILENOTFOUND_H */