com.ctc.wstx.exc.WstxParsingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of woodstox-core-lgpl Show documentation
Show all versions of woodstox-core-lgpl 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;
/**
* Intermediate base class for reporting actual Wstx parsing problems.
*/
public class WstxParsingException
extends WstxException
{
private static final long serialVersionUID = 1L;
public WstxParsingException(String msg, Location loc) {
super(msg, loc);
}
// !!! 13-Sep-2008, tatus: Only needed for DOMWrapping reader, for now
public WstxParsingException(String msg) { super(msg); }
}