Added ability to order the execution of dictionary adapter behaviors.
[castle.git] / Experiments / Attic / Rook / Castle.Rook.Compiler / Parser / antlr / ANTLRPanicException.cs
blobe4b75a94759805cab40e9364df74b5d950e80064
1 namespace antlr
3 /*ANTLR Translator Generator
4 * Project led by Terence Parr at http://www.jGuru.com
5 * Software rights: http://www.antlr.org/license.html
7 * $Id:$
8 */
11 // ANTLR C# Code Generator by Micheal Jordan
12 // Kunle Odutola : kunle UNDERSCORE odutola AT hotmail DOT com
13 // Anthony Oguntimehin
15 // With many thanks to Eric V. Smith from the ANTLR list.
18 using System;
20 [Serializable]
21 public class ANTLRPanicException : ANTLRException
23 public ANTLRPanicException() : base()
27 public ANTLRPanicException(string s) : base(s)
31 public ANTLRPanicException(string s, Exception inner) : base(s, inner)