com.greenpepper.shaded.antlr.TokenStreamIOException Maven / Gradle / Ivy
package antlr;
/* ANTLR Translator Generator
* Project led by Terence Parr at http://www.cs.usfca.edu
* Software rights: http://www.antlr.org/license.html
*
* $Id: //depot/code/org.antlr/release/antlr-2.7.6/antlr/TokenStreamIOException.java#1 $
*/
import java.io.IOException;
/**
* Wraps an IOException in a TokenStreamException
*/
public class TokenStreamIOException extends TokenStreamException {
public IOException io;
/**
* TokenStreamIOException constructor comment.
* @param s java.lang.String
*/
public TokenStreamIOException(IOException io) {
super(io.getMessage());
this.io = io;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy