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