mirror of
https://github.com/quinton-ashley/java2js
synced 2024-12-29 10:11:54 +01:00
11 lines
265 B
JavaScript
Executable File
11 lines
265 B
JavaScript
Executable File
jdk.imports['java.util.IllegalFormatException'].load = async () => {
|
|
// TODO import and extend exception
|
|
|
|
class IllegalFormatException {
|
|
constructor(message) {
|
|
this.message = message;
|
|
}
|
|
}
|
|
jdk.java.util.IllegalFormatException = IllegalFormatException;
|
|
};
|