Newer
Older
#ifndef LIBWCCL_PARSER_PARSEREXCEPTION_H
#define LIBWCCL_PARSER_PARSEREXCEPTION_H
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