com.fasterxml.aalto.impl.IoStreamException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aalto-xml Show documentation
Show all versions of aalto-xml Show documentation
Ultra-high performance non-blocking XML processor (Stax/Stax2, SAX/SAX2)
package com.fasterxml.aalto.impl;
import java.io.IOException;
/**
* Simple wrapper for {@link IOException}s; needed when StAX does not expose
* underlying I/O exceptions via its methods.
*/
@SuppressWarnings("serial")
public class IoStreamException
extends StreamExceptionBase
{
public IoStreamException(IOException ie) {
super(ie);
}
public IoStreamException(String msg) {
super(msg);
}
}