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