java.io.UncheckedIOException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jtransc-rt Show documentation
Show all versions of jtransc-rt Show documentation
JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.
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();
}
}