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

com.ctc.wstx.exc.WstxEOFException Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy