minor tweaks

This commit is contained in:
Axel Kohlmeyer
2020-08-30 14:28:19 -04:00
parent 8d45b724a6
commit f3ed1dea4d
2 changed files with 5 additions and 3 deletions

View File

@ -49,10 +49,10 @@ public:
std::vector<std::string> as_vector();
};
/** \exception TokenizerException. Contains an error message string. */
class TokenizerException : public std::exception {
std::string message;
public:
/** Thrown during retrieving or skipping tokens */
TokenizerException(const std::string & msg, const std::string & token);
~TokenizerException() throw() {