Added ability to order the execution of dictionary adapter behaviors.
[castle.git] / Experiments / Attic / Rook / Castle.Rook.Compiler / Parser / antlr / CharStreamIOException.cs
blob4c00d039131e61b6f3fe97908ecb8f014d61068d
1 using System;
2 using IOException = System.IO.IOException;
4 namespace antlr
6 /*ANTLR Translator Generator
7 * Project led by Terence Parr at http://www.jGuru.com
8 * Software rights: http://www.antlr.org/license.html
10 * $Id:$
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
24 [Serializable]
25 public class CharStreamIOException : CharStreamException
27 public IOException io;
29 public CharStreamIOException(IOException io) : base(io.Message)
31 this.io = io;