Added ability to order the execution of dictionary adapter behaviors.
[castle.git] / Experiments / Attic / Rook / Castle.Rook.Compiler / Parser / antlr / ANTLRException.cs
blob65f4b2352eff8397a35c0f102ddf8f3fee650fce
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 ANTLRException : Exception
23 public ANTLRException() : base()
27 public ANTLRException(string s) : base(s)
31 public ANTLRException(string s, Exception inner) : base(s, inner)