1 namespace 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 ANTLRPanicException : ANTLRException
22 	{
ANTLRPanicException()23 		public ANTLRPanicException() : base()
24 		{
25 		}
26 
ANTLRPanicException(string s)27 		public ANTLRPanicException(string s) : base(s)
28 		{
29 		}
30 
ANTLRPanicException(string s, Exception inner)31 		public ANTLRPanicException(string s, Exception inner) : base(s, inner)
32 		{
33 		}
34 	}
35 }
36