-
rk authored5cbb29dc
ParserException.h 263 B
#ifndef PARSEREXCEPTION_H
#define PARSEREXCEPTION_H
#include <string>
class ParserException
{
public:
ParserException(const std::string);
//
const std::string info() const { return this->msg; }
private:
std::string msg;
};
#endif // PARSEREXCEPTION_H