ros2_canopen  master
C++ ROS CANopen Library
master_error.hpp
Go to the documentation of this file.
1 #ifndef MASTER_ERROR_HPP_
2 #define MASTER_ERROR_HPP_
3 
4 #include <system_error>
5 
6 namespace ros2_canopen
7 {
15 class MasterException : public std::exception
16 {
17 private:
18  std::string what_;
19 
20 public:
21  MasterException(std::string what) { what_ = what; }
22 
23  char * what();
24 };
25 } // namespace ros2_canopen
26 
27 #endif
Master Exception.
Definition: master_error.hpp:16
MasterException(std::string what)
Definition: master_error.hpp:21
Definition: configuration_manager.hpp:28