HCE project C++ developers source code library  1.1.1
HCE project developer library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Errors.hpp
Go to the documentation of this file.
1 
15 #ifndef ERROR_HPP
16 #define ERROR_HPP
17 
18 
19 namespace HCE {
20 
21 
22 enum {
32 };
33 
34 
35 const std::string error_messages[] = {
36  "status ok"
37  , "documents not present"
38  , "Parse error – wrong Json format"
39  , "Action type error : not supported"
40  , "General internal error of functional object"
41  , "Invalid message type"
42  , "Invalid message body"
43  , "Invalid admin command"
44 };
45 
46 
47 }
48 
49 
50 #endif