highlighter application  1.1
HCE project utils : highlighter
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
HighlightJsonException.hpp
Go to the documentation of this file.
1 
13 #ifndef HIGHLIGHT_JSON_EXCEPTION_HPP
14 #define HIGHLIGHT_JSON_EXCEPTION_HPP
15 
16 #include "ExceptionBase.hpp"
17 
18 namespace HCE
19 {
20  namespace exception
21  {
23  {
24  public:
25  HighlightJsonException(const std::string &what):ExceptionBase(what) {}
26  virtual ~HighlightJsonException() throw(){}
27  };
28  }
29 }
30 
31 #endif