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 webservices-rt Show documentation
Show all versions of webservices-rt Show documentation
This module contains the Metro runtime code.
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.
*/
@SuppressWarnings("serial")
public class WstxOutputException
extends WstxException
{
public WstxOutputException(String msg) {
super(msg);
}
}