September 2016
Intermediate to advanced
588 pages
12h 22m
English
The evaluation errors are as follows:
There is also the syntax error that occurs when the user inputs a syntactically incorrect formula.
Error.h
enum ErrorId {SyntaxError, CircularReference, ReferenceOutOfRange,
DivisionByZero, MissingValue};
class Error : public exception {
public:
Error(ErrorId errorId);
String ErrorText() const;
private:
ErrorId errorId;
};
Read now
Unlock full access