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