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

src.java.com.ctc.wstx.exc.WstxParsingException Maven / Gradle / Ivy

There is a newer version: 3.2.7
Show newest version
package com.ctc.wstx.exc;

import javax.xml.stream.Location;
import javax.xml.stream.XMLStreamException;

/**
 * Intermediate base class for reporting actual Wstx parsing problems.
 */
public class WstxParsingException
    extends WstxException
{
    public WstxParsingException(String msg, Location loc) {
        super(msg, loc);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy