3 /*ANTLR Translator Generator
4 * Project led by Terence Parr at http://www.jGuru.com
5 * Software rights: http://www.antlr.org/license.html
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.
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
)