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

FindANTLR.cmake

Blame
  • ParserException.h 395 B
    #ifndef LIBWCCL_PARSER_PARSEREXCEPTION_H
    #define LIBWCCL_PARSER_PARSEREXCEPTION_H
    
    #include <libwccl/exception.h>
    
    #include <string>
    
    class ParserException : public Wccl::WcclError
    {
    public:
    		ParserException(const std::string);
    		~ParserException() throw() { 
    		}
    
    		//
    		std::string info() const { return this->msg; }
    
    private:
    	std::string msg;
    };
    
    #endif // LIBWCCL_PARSER_PARSEREXCEPTION_H