SourceTermAnalysisSystem_vue/node_modules/jsts/java/lang/IndexOutOfBoundsException.js

8 lines
216 B
JavaScript
Raw Normal View History

2026-05-15 10:22:44 +08:00
import Exception from './Exception'
export default class IndexOutOfBoundsException extends Exception {
constructor(message) {
super(message)
this.name = Object.keys({ IndexOutOfBoundsException })[0]
}
}