I'm working on a project using the [ANTLR][1] parser library for C#.  I've built a grammar to parse some text and it works well.  However, when the parser comes across an illegal or unexpected token, it throws one of many exceptions.  The problem is that in some cases (not all) that my try/catch block won't catch it and instead stops execution as an unhandled exception.

The issue for me is that I can't replicate this issue anywhere else but in my full code.  The call stack shows that the exception definitely occurs within my try/catch(Exception) block.  The only thing I can think of is that there are a few ANTLR assembly calls that occur between my code and the code throwing the exception and this library does not have debugging enabled, so I can't step through it.  I wonder if non-debuggable assemblies inhibit exception bubbling?  The call stack looks like this; external assembly calls are in Antlr.Runtime:

	Expl.Itinerary.dll!TimeDefLexer.mTokens() Line 1213	C#
 	Antlr3.Runtime.dll!Antlr.Runtime.Lexer.NextToken() + 0xfc bytes	
 	Antlr3.Runtime.dll!Antlr.Runtime.CommonTokenStream.FillBuffer() + 0x22c bytes	
 	Antlr3.Runtime.dll!Antlr.Runtime.CommonTokenStream.LT(int k = 1) + 0x68 bytes
 	Expl.Itinerary.dll!TimeDefParser.prog() Line 109 + 0x17 bytes	C#
	Expl.Itinerary.dll!Expl.Itinerary.TDLParser.Parse(string Text = "", Expl.Itinerary.IItinerary Itinerary = {Expl.Itinerary.MemoryItinerary}) Line 17 + 0xa bytes	C#

The code snippet from the bottom-most call in Parse() looks like:

         try {
            // Execution stopped at parser.prog()
            TimeDefParser.prog_return prog_ret = parser.prog();
            return prog_ret == null ? null : prog_ret.value;
         }
         catch (Exception ex) {
            throw new ParserException(ex.Message, ex);
         }

To me, a catch (Exception) clause should've captured any exception whatsoever.  Is there any reason why it wouldn't?

**Update:** I traced through the external assembly with Reflector and found no evidence of threading whatsoever.  The assembly seems to just be a runtime utility class for ANTLR's generated code.  The exception thrown is from the TimeDefLexer.mTokens() method and its type is NoViableAltException, which derives from RecognitionException -> Exception.  This exception is thrown when the lexer cannot understand the next token in the stream; in other words, invalid input.  This exception is SUPPOSED to happen, however it should've been caught by my try/catch block.

Also, the rethrowing of ParserException is really irrelevant to this situation.  That is a layer of abstraction that takes any exception during parse and convert to my own ParserException.  The exception handling problem I'm experiencing is never reaching that line of code.  In fact, I commented out the catch(Exception) { throw new ParserException } handler and still received the same result.

One more thing, I modified the original try/catch block in question to instead catch NoViableAltException, eliminating any inheritance confusion.  I still received the same result.

Someone once suggested that sometimes VS is overactive on catching handled exceptions when in debug mode, but this issue also happens in release mode.

Man, I'm still stumped!  I hadn't mentioned it before, but I'm running VS 2008 and all my code is 3.5.  The external assembly is 2.0.

  [1]: http://antlr.org