EEROS  0.4.1.0
API for the EEROS Real-Time Robotics Framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
EEROSException.hpp
Go to the documentation of this file.
1 #ifndef ORG_EEROS_CORE_EEROSEXCEPTION_HPP
2 #define ORG_EEROS_CORE_EEROSEXCEPTION_HPP
3 
4 #include <string>
5 #include <sstream>
6 #include <exception>
7 
8 namespace eeros {
9  class EEROSException : public std::exception {
10 
11  public:
13  explicit EEROSException(std::string m);
14  virtual ~EEROSException() throw();
15 
16  virtual const char* what() const throw();
17 
18  protected:
19  std::string message;
20  };
21 };
22 
23 #endif // ORG_EEROS_CORE_EEROSEXCEPTION_HPP
Definition: EEROSException.hpp:9
virtual ~EEROSException()
Definition: EEROSException.cpp:11
std::string message
Definition: EEROSException.hpp:19
EEROSException()
Definition: EEROSException.cpp:5
virtual const char * what() const
Definition: EEROSException.cpp:13