source: trunk/yao/share/antlr-2.7.7/lib/csharp/antlr.runtime/antlr/ANTLRException.cs @ 1

Last change on this file since 1 was 1, checked in by lnalod, 15 years ago

Initial import of YAO sources

File size: 698 bytes
Line 
1namespace antlr
2{
3        /*ANTLR Translator Generator
4        * Project led by Terence Parr at http://www.jGuru.com
5        * Software rights: http://www.antlr.org/license.html
6        *
7        * $Id:$
8        */
9
10        //
11        // ANTLR C# Code Generator by Micheal Jordan
12        //                            Kunle Odutola       : kunle UNDERSCORE odutola AT hotmail DOT com
13        //                            Anthony Oguntimehin
14        //
15        // With many thanks to Eric V. Smith from the ANTLR list.
16        //
17       
18        using System;
19       
20        [Serializable]
21        public class ANTLRException : Exception
22        {
23                public ANTLRException() : base() 
24                {
25                }
26
27                public ANTLRException(string s) : base(s) 
28                {
29                }
30
31                public ANTLRException(string s, Exception inner) : base(s, inner)
32                {
33                }
34        }
35}
Note: See TracBrowser for help on using the repository browser.