com.ctc.wstx.exc.WstxIOException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of woodstox-core-asl Show documentation
Show all versions of woodstox-core-asl 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 java.io.IOException;
/**
* Simple wrapper for {@link IOException}s; needed when StAX does not expose
* underlying I/O exceptions via its methods.
*/
public class WstxIOException
extends WstxException
{
private static final long serialVersionUID = 1L;
public WstxIOException(IOException ie) {
super(ie);
}
public WstxIOException(String msg) {
super(msg);
}
}