com.ctc.wstx.exc.WstxOutputException 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;
/**
* Exception class used for notifying about well-formedness errors that
* writers would create. Such exceptions are thrown when strict output
* validation is enabled.
*/
public class WstxOutputException
extends WstxException
{
private static final long serialVersionUID = 1L;
public WstxOutputException(String msg) {
super(msg);
}
}