ifw-core  5.0.0-pre2
errors.hpp
Go to the documentation of this file.
1 
10 #ifndef CORE_PROTOCOL_BASE_ERRORS_HPP_
11 #define CORE_PROTOCOL_BASE_ERRORS_HPP_
12 
13 #include <string>
14 
15 namespace protocol {
16  namespace errors {
17  const std::string CFG_ITEM_NOT_FOUND = "Configuration item not found";
18  const std::string CFG_TYPE_UNKNOWN = "Device configuration type is not registered";
19  const std::string CFG_INTERFACE_UNKNOWN = "Device communication interface is not registered";
20  }
21 }
22 #endif
const std::string CFG_TYPE_UNKNOWN
Definition: errors.hpp:18
const std::string CFG_INTERFACE_UNKNOWN
Definition: errors.hpp:19
const std::string CFG_ITEM_NOT_FOUND
Definition: errors.hpp:17
Definition: commFactory.cpp:15