summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/parser/antlr_input.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/parser/antlr_input.cpp b/src/parser/antlr_input.cpp
index db7964b37..8987a7572 100644
--- a/src/parser/antlr_input.cpp
+++ b/src/parser/antlr_input.cpp
@@ -206,7 +206,7 @@ AntlrInput* AntlrInput::newInput(InputLanguage lang, AntlrInputStream& inputStre
default:
std::stringstream ss;
ss << "internal error: unhandled language " << lang << " in AntlrInput::newInput";
- throw ParserException(ss.str());
+ throw InputStreamException(ss.str());
}
return input;
@@ -302,13 +302,13 @@ void AntlrInput::setAntlr3Lexer(pANTLR3_LEXER pLexer) {
/* 2*lookahead should be sufficient, but we give ourselves some breathing room. */
pTokenFactory = BoundedTokenFactoryNew(d_antlr3InputStream, 2*d_lookahead);
if( pTokenFactory == NULL ) {
- throw ParserException("Couldn't create token factory.");
+ throw InputStreamException("Couldn't create token factory.");
}
d_lexer->rec->state->tokFactory = pTokenFactory;
pBOUNDED_TOKEN_BUFFER buffer = BoundedTokenBufferSourceNew(d_lookahead, d_lexer->rec->state->tokSource);
if( buffer == NULL ) {
- throw ParserException("Couldn't create token buffer.");
+ throw InputStreamException("Couldn't create token buffer.");
}
d_tokenBuffer = buffer;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback