hce-node application  1.4.3
HCE Hierarchical Cluster Engine node application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
ThreadAlreadyRunningException.hpp
Go to the documentation of this file.
1 #ifndef THREADALREADYRUNNINGEXCEPTION_H
2 #define THREADALREADYRUNNINGEXCEPTION_H
3 
4 #include <Poco/Exception.h>
5 
6 namespace HCE {
7  class ThreadAlreadyRunningException : public Poco::Exception {
8  public:
9  ThreadAlreadyRunningException(const std::string& message):Poco::Exception(message){}
10  virtual ~ThreadAlreadyRunningException() throw() {}
11  };
12 }
13 
14 #endif /* THREADALREADYRUNNINGEXCEPTION_H */
15