more tweaks. doxygen translation has no more warnings now.

This commit is contained in:
Axel Kohlmeyer
2020-08-30 14:32:53 -04:00
parent cd0cdf0b74
commit 199cfeba78

View File

@ -65,16 +65,16 @@ public:
}
};
/** \exception InvalidIntegerException. Contains an error message string. */
class InvalidIntegerException : public TokenizerException {
public:
/** Thrown during converting string to integer number */
InvalidIntegerException(const std::string & token) : TokenizerException("Not a valid integer number", token) {
}
};
/** \exception FloatIntegerException. Contains an error message string. */
class InvalidFloatException : public TokenizerException {
public:
/** Thrown during converting string to floating point number */
InvalidFloatException(const std::string & token) : TokenizerException("Not a valid floating-point number", token) {
}
};