From 12e6dca444a0766318961156914d3c1b6732551e Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Tue, 9 Nov 2010 16:01:20 -0500 Subject: [PATCH] Change token list to DSN lexer CMake module to output new IO_ERROR exception. --- CMakeModules/TokenList2DsnLexer.cmake | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/CMakeModules/TokenList2DsnLexer.cmake b/CMakeModules/TokenList2DsnLexer.cmake index 0c310f9d0a..5e464c1af6 100644 --- a/CMakeModules/TokenList2DsnLexer.cmake +++ b/CMakeModules/TokenList2DsnLexer.cmake @@ -262,9 +262,9 @@ public: * this lower level function returning an int (so the enum does not collide * with another usage). * @return ${enum} - the type of token found next. - * @throw IOError - only if the LINE_READER throws it. + * @throw IO_ERROR - only if the LINE_READER throws it. */ - ${enum} NextTok() throw (IOError) + ${enum} NextTok() throw( IO_ERROR ) { return (${enum}) DSNLEXER::NextTok(); } @@ -273,11 +273,11 @@ public: * Function NeedSYMBOL * calls NextTok() and then verifies that the token read in * satisfies bool IsSymbol(). - * If not, an IOError is thrown. + * If not, an IO_ERROR is thrown. * @return int - the actual token read in. - * @throw IOError, if the next token does not satisfy IsSymbol() + * @throw IO_ERROR, if the next token does not satisfy IsSymbol() */ - ${enum} NeedSYMBOL() throw( IOError ) + ${enum} NeedSYMBOL() throw( IO_ERROR ) { return (${enum}) DSNLEXER::NeedSYMBOL(); } @@ -286,11 +286,11 @@ public: * Function NeedSYMBOLorNUMBER * calls NextTok() and then verifies that the token read in * satisfies bool IsSymbol() or tok==T_NUMBER. - * If not, an IOError is thrown. + * If not, an IO_ERROR is thrown. * @return int - the actual token read in. - * @throw IOError, if the next token does not satisfy the above test + * @throw IO_ERROR, if the next token does not satisfy the above test */ - ${enum} NeedSYMBOLorNUMBER() throw( IOError ) + ${enum} NeedSYMBOLorNUMBER() throw( IO_ERROR ) { return (${enum}) DSNLEXER::NeedSYMBOLorNUMBER(); }