1
0
mirror of https://github.com/quinton-ashley/java2js synced 2024-12-29 10:11:54 +01:00
java2js/jdk/java/io/FileNotFoundException.js
Quinton Ashley f122d89264 1.2.7
2022-04-22 14:00:18 -05:00

10 lines
261 B
JavaScript

jdk.imports['java.io.FileNotFoundException'].load = async () => {
class FileNotFoundException extends Exception {
constructor(msg) {
super(msg);
this.name = 'FileNotFoundException';
}
}
jdk.java.io.FileNotFoundException = FileNotFoundException;
};