SourceTermAnalysisSystem_vue/node_modules/jsts/java/util/EmptyStackException.js

9 lines
210 B
JavaScript
Raw Normal View History

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