Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Formula.hpp

    r56f73b r266875  
    1919#include <iterator>
    2020
    21 #include "Exceptions/ParseError.hpp"
     21#include "Exceptions/FormulaStringParseException.hpp"
    2222
    2323#include "types.hpp"
     
    7171
    7272  std::string toString() const;
    73   void fromString(const std::string&) throw(ParseError);
     73  void fromString(const std::string&) throw(FormulaStringParseException);
    7474  bool checkOut(std::ostream*) const;
    7575
     
    112112
    113113private:
    114   void parseFromString(std::string::const_iterator&,std::string::const_iterator&,char) throw(ParseError);
    115   int parseMaybeNumber(std::string::const_iterator &it,std::string::const_iterator &end) throw(ParseError);
     114  void parseFromString(std::string::const_iterator&,std::string::const_iterator&,char) throw(FormulaStringParseException);
     115  int parseMaybeNumber(std::string::const_iterator &it,std::string::const_iterator &end) throw(FormulaStringParseException);
    116116  // this contains all counts of elements in the formula
    117117  // the size of the actual structure might be used in comparisons
Note: See TracChangeset for help on using the changeset viewer.