Newer
Older
#ifndef LIBWCCL_PARSER_PARSEREXCEPTION_H
#define LIBWCCL_PARSER_PARSEREXCEPTION_H
#include <string>
class ParserException
{
public:
ParserException(const std::string);
//
const std::string info() const { return this->msg; }
private:
std::string msg;
};
#endif // LIBWCCL_PARSER_PARSEREXCEPTION_H