hce-node application  1.4.3
HCE Hierarchical Cluster Engine node application
 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 {
33 };
34 
35 
36 const std::string error_messages[] = {
37  "status ok"
38  , "documents not present"
39  , "Parse error – wrong Json format"
40  , "Action type error : not supported"
41  , "General internal error of functional object"
42  , "Invalid message type"
43  , "Invalid message body"
44  , "Invalid admin command"
45  , "Put fail: key exist. The aerospike server is configured for only unique keys."
46 };
47 
48 
49 }
50 
51 
52 #endif