hce-node application  1.4.3
HCE Hierarchical Cluster Engine node application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
JsonObjectExeption.hpp
Go to the documentation of this file.
1 
16 #ifndef JSON_OBJECT_EXCEPTION_HPP
17 #define JSON_OBJECT_EXCEPTION_HPP
18 
19 #include "ExceptionBase.hpp"
20 
21 namespace HCE
22 {
23  namespace exception
24  {
26  {
27  public:
28  JsonObjectExeption(const std::string what):ExceptionBase(what) {}
29  virtual ~JsonObjectExeption() throw(){}
30  };
31  }
32 }
33 
34 #endif