com.ctc.wstx.exc.WstxEOFException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of woodstox-core-asl Show documentation
Show all versions of woodstox-core-asl Show documentation
Woodstox is a high-performance XML processor that
implements Stax (JSR-173) and SAX2 APIs
The newest version!
package com.ctc.wstx.exc;
import javax.xml.stream.Location;
/**
* Exception thrown during parsing, if an unexpected EOF is encountered.
* Location usually signals starting position of current Node.
*/
public class WstxEOFException
extends WstxParsingException
{
private static final long serialVersionUID = 1L;
public WstxEOFException(String msg, Location loc) {
super(msg, loc);
}
}