SourceTermAnalysisSystem_vue/node_modules/jsts/java/lang/IndexOutOfBoundsException.js
2026-05-15 10:22:44 +08:00

8 lines
216 B
JavaScript

import Exception from './Exception'
export default class IndexOutOfBoundsException extends Exception {
constructor(message) {
super(message)
this.name = Object.keys({ IndexOutOfBoundsException })[0]
}
}