From 199cfeba78d8eec5528cb46a702a459995f1059f Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Sun, 30 Aug 2020 14:32:53 -0400 Subject: [PATCH] more tweaks. doxygen translation has no more warnings now. --- src/tokenizer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tokenizer.h b/src/tokenizer.h index 688e6dcbbc..17f4159ad7 100644 --- a/src/tokenizer.h +++ b/src/tokenizer.h @@ -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) { } };