10 lines
208 B
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);
|
|
}
|
|
}
|