All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fasterxml.aalto.impl.IoStreamException Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy