All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javolution.xml.stream.XMLUnexpectedEndOfDocumentException Maven / Gradle / Ivy

Go to download

Only the Java Core part of Javolution library, with slight modifications for use in MSFTBX.

There is a newer version: 6.11.8
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy