Added ability to order the execution of dictionary adapter behaviors.
[castle.git] / Experiments / Attic / Rook / Castle.Rook.Compiler / Parser / antlr / SemanticException.cs
blob9e9893bf60ac1715196e64feffd6668271746f7f
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.
20 [Serializable]
21 public class SemanticException : RecognitionException
23 public SemanticException(string s) : base(s)
27 [Obsolete("Replaced by SemanticException(string, string, int, int) since version 2.7.2.6", false)]
28 public SemanticException(String s, String fileName, int line) :
29 this(s, fileName, line, -1)
34 public SemanticException(string s, string fileName, int line, int column) :
35 base(s, fileName, line, column)