Select Git revision
actionexeccontext.h
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