CARMA C++
errorMsgs.h
1 #ifndef CARMA_CONTROL_ERR_MSGS_H
2 #define CARMA_CONTROL_ERR_MSGS_H
3 
18 #include <string>
19 
20 namespace carma {
21 namespace control { // anonymous
22  const std::string ZERO_DISALLOWED =
23  "Input antenna number did not map to a single antenna (zero disallowed on this command)." ;
24  const std::string NULL_MONSYS =
25  "Input antenna number mapped to a NULL antenna monitor subsystem." ;
26  const std::string NULL_ANTENNA =
27  "Input antenna number mapped to a NULL AntennaControls object." ;
28 }
29 }
30 
31 #endif //CARMA_CONTROL_ERR_MSGS_H