
com.fasterxml.aalto.impl.IoStreamException Maven / Gradle / Ivy
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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy