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