javolution.xml.stream.XMLUnexpectedEndOfDocumentException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javolution-core-java-msftbx Show documentation
Show all versions of javolution-core-java-msftbx Show documentation
Only the Java Core part of Javolution library, with slight modifications for use in MSFTBX.
package javolution.xml.stream;
/**
* Indicates that an XML stream has ended abruptly without proper closing XML tags.
*
* @author Dmitry Avtonomov
* @version 1.0, October 09, 2015
*/
public class XMLUnexpectedEndOfDocumentException extends XMLStreamException {
public XMLUnexpectedEndOfDocumentException() {
}
public XMLUnexpectedEndOfDocumentException(String msg) {
super(msg);
}
public XMLUnexpectedEndOfDocumentException(Throwable nested) {
super(nested);
}
public XMLUnexpectedEndOfDocumentException(String msg, Throwable nested) {
super(msg, nested);
}
public XMLUnexpectedEndOfDocumentException(String msg, Location location, Throwable nested) {
super(msg, location, nested);
}
public XMLUnexpectedEndOfDocumentException(String msg, Location location) {
super(msg, location);
}
}