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

scorex.io.IOException Maven / Gradle / Ivy

The newest version!
package scorex.io;

public class IOException extends Exception {
    public IOException() {
        super();
    }

    public IOException(String message) {
        super(message);
    }

    public IOException(String message, Throwable cause) {
        super(message, cause);
    }

    public IOException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy