Files
j2s/src/me/topchetoeu/jscript/exceptions/UncheckedIOException.java

10 lines
208 B
Java

package me.topchetoeu.jscript.exceptions;
import java.io.IOException;
public class UncheckedIOException extends RuntimeException {
public UncheckedIOException(IOException e) {
super(e);
}
}