1
0
mirror of https://github.com/quinton-ashley/java2js synced 2024-12-29 10:11:54 +01:00
java2js/jdk/java/util/IllegalFormatException.js

11 lines
265 B
JavaScript
Raw Permalink Normal View History

2021-09-24 00:36:29 -05:00
jdk.imports['java.util.IllegalFormatException'].load = async () => {
2021-09-23 01:41:44 -05:00
// TODO import and extend exception
class IllegalFormatException {
constructor(message) {
this.message = message;
}
}
2021-09-23 23:26:42 -05:00
jdk.java.util.IllegalFormatException = IllegalFormatException;
2021-09-23 01:41:44 -05:00
};