com.ctc.wstx.exc.WstxOutputException Maven / Gradle / Ivy
Go to download
Woodstox is a high-performance XML processor that
implements Stax (JSR-173) and SAX2 APIs
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
{
public WstxOutputException(String msg) {
super(msg);
}
}