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

10 lines
261 B
JavaScript
Raw Permalink Normal View History

2022-04-12 11:32:32 -05:00
jdk.imports['java.io.FileNotFoundException'].load = async () => {
2022-04-22 14:00:18 -05:00
class FileNotFoundException extends Exception {
constructor(msg) {
super(msg);
this.name = 'FileNotFoundException';
}
}
2022-04-12 11:32:32 -05:00
jdk.java.io.FileNotFoundException = FileNotFoundException;
};