/* * ParseError.hpp * * Created on: Jul 21, 2010 * Author: crueger */ #ifndef PARSEERROR_HPP_ #define PARSEERROR_HPP_ #include "Exceptions/CustomException.hpp" class ParseError : public CustomException { public: ParseError(std::string file, int line); virtual ~ParseError() throw(); virtual const char* what() const throw(); }; #endif /* PARSEERROR_HPP_ */