Added ability to order the execution of dictionary adapter behaviors.
[castle.git] / Experiments / Attic / Rook / Castle.Rook.Compiler / Parser / antlr / TokenStreamException.cs
blobd13a19fd40f22e07ad46f6a07ae21db196c4710c
1 using System;
3 namespace antlr
5 /*ANTLR Translator Generator
6 * Project led by Terence Parr at http://www.jGuru.com
7 * Software rights: http://www.antlr.org/license.html
9 * $Id:$
13 // ANTLR C# Code Generator by Micheal Jordan
14 // Kunle Odutola : kunle UNDERSCORE odutola AT hotmail DOT com
15 // Anthony Oguntimehin
17 // With many thanks to Eric V. Smith from the ANTLR list.
21 * Anything that goes wrong while generating a stream of tokens.
24 [Serializable]
25 public class TokenStreamException : ANTLRException
27 public TokenStreamException()
30 public TokenStreamException(string s) : base(s)