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