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

java.io.UncheckedIOException Maven / Gradle / Ivy

Go to download

JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.

The newest version!
package java.io;

import java.util.Objects;

public class UncheckedIOException extends RuntimeException {
	public UncheckedIOException(String message, IOException cause) {
		super(message, Objects.requireNonNull(cause));
	}

	public UncheckedIOException(IOException cause) {
		super(Objects.requireNonNull(cause));
	}

	@Override
	public IOException getCause() {
		return (IOException) super.getCause();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy