2 using IOException
= System
.IO
.IOException
;
6 /*ANTLR Translator Generator
7 * Project led by Terence Parr at http://www.jGuru.com
8 * Software rights: http://www.antlr.org/license.html
14 // ANTLR C# Code Generator by Micheal Jordan
15 // Kunle Odutola : kunle UNDERSCORE odutola AT hotmail DOT com
16 // Anthony Oguntimehin
18 // With many thanks to Eric V. Smith from the ANTLR list.
22 * Wrap an IOException in a CharStreamException
25 public class CharStreamIOException
: CharStreamException
27 public IOException io
;
29 public CharStreamIOException(IOException io
) : base(io
.Message
)