mirror of
https://github.com/quinton-ashley/java2js
synced 2024-12-29 10:11:54 +01:00
10 lines
261 B
JavaScript
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;
|
|
};
|