1
0
mirror of https://github.com/quinton-ashley/java2js synced 2024-12-29 10:11:54 +01:00
java2js/jre/java/util/IllegalFormatException.js
Quinton Ashley fcf49e5a8d 1.0.1
2021-09-23 01:41:44 -05:00

12 lines
260 B
JavaScript
Executable File

jre.imports['java.util.IllegalFormatException'].load = () => {
// TODO import and extend exception
class IllegalFormatException {
constructor(message) {
this.message = message;
}
}
jre.java.util.IllegalFormatException = IllegalFormatException;
};