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