Apply override to Reader classes

This commit is contained in:
Richard Berger
2022-01-18 14:39:31 -05:00
parent d19f799585
commit 1792b3b0cf
4 changed files with 13 additions and 13 deletions

View File

@ -62,11 +62,11 @@ class TokenizerException : public std::exception {
* \param token String of the token/word that caused the error */
explicit TokenizerException(const std::string &msg, const std::string &token);
~TokenizerException() noexcept {}
~TokenizerException() noexcept override {}
/** Retrieve message describing the thrown exception
* \return string with error message */
virtual const char *what() const noexcept { return message.c_str(); }
const char *what() const noexcept override { return message.c_str(); }
};
class InvalidIntegerException : public TokenizerException {