EEROS  1.0.0.0
API for the EEROS Real-Time Robotics Framework
NotConnectedFault.hpp
Go to the documentation of this file.
1 #ifndef ORG_EEROS_CONTROL_NOTCONNECTEDFAULT_HPP
2 #define ORG_EEROS_CONTROL_NOTCONNECTEDFAULT_HPP
3 
4 #include <eeros/core/Fault.hpp>
5 
6 namespace eeros {
7  namespace control {
8  class NotConnectedFault : public eeros::Fault {
9 
10  public:
12  explicit NotConnectedFault(std::string m);
13  virtual ~NotConnectedFault() throw();
14  };
15  };
16 };
17 
18 #endif // ORG_EEROS_CONTROL_NOTCONNECTEDFAULT_HPP
Definition: Config.hpp:14
virtual ~NotConnectedFault()
Definition: NotConnectedFault.cpp:9
Definition: Fault.hpp:9
Definition: NotConnectedFault.hpp:8
NotConnectedFault()
Definition: NotConnectedFault.cpp:5