1 package persistence.antlr;2 3 /* ANTLR Translator Generator4 * Project led by Terence Parr at http://www.jGuru.com5 * Software rights: http://www.antlr.org/license.html6 *7 */8 9 import java.io.IOException ;10 11 /**12 * Wrap an IOException in a CharStreamException13 */14 public class CharStreamIOException extends CharStreamException {15 public IOException io;16 17 public CharStreamIOException(IOException io) {18 super(io.getMessage());19 this.io = io;20 }21 }22