Skip to content
Snippets Groups Projects
Select Git revision
  • fb6645c2d1a9455c9c5686e964beafec60c1b8a0
  • master default protected
  • fix-words-ann
  • wccl-rules-migration
  • develop
5 results

actionexeccontext.h

Blame
  • ParserException.h 355 B
    #ifndef LIBWCCL_PARSER_PARSEREXCEPTION_H
    #define LIBWCCL_PARSER_PARSEREXCEPTION_H
    
    #include <string>
    
    class ParserException //TODO derive from std::exception or wcclerror
    {
    public:
    		ParserException(const std::string);
    
    		//
    		const std::string info() const { return this->msg; }
    
    private:
    	std::string msg;
    };
    
    #endif // LIBWCCL_PARSER_PARSEREXCEPTION_H