1 using System;
2 
3 namespace antlr
4 {
5 	/*ANTLR Translator Generator
6 	* Project led by Terence Parr at http://www.jGuru.com
7 	* Software rights: http://www.antlr.org/license.html
8 	*
9 	* $Id:$
10 	*/
11 
12 	//
13 	// ANTLR C# Code Generator by Micheal Jordan
14 	//                            Kunle Odutola       : kunle UNDERSCORE odutola AT hotmail DOT com
15 	//                            Anthony Oguntimehin
16 	//
17 	// With many thanks to Eric V. Smith from the ANTLR list.
18 	//
19 
20 	/*
21 	* Anything that goes wrong while generating a stream of characters
22 	*/
23 
24 	[Serializable]
25 	public class CharStreamException : ANTLRException
26 	{
27 		/*
28 		* CharStreamException constructor comment.
29 		*/
CharStreamException(string s)30 		public CharStreamException(string s) : base(s)
31 		{
32 		}
33 	}
34 }