@mkerkstra/jsts-cjs
Version:
A CommonJS fork of JSTS: A JavaScript library of spatial predicates and functions for processing geometry
11 lines (10 loc) • 358 B
JavaScript
import Exception from '../../../../java/lang/Exception.js'
export default class NotRepresentableException extends Exception {
constructor() {
super()
NotRepresentableException.constructor_.apply(this, arguments)
}
static constructor_() {
Exception.constructor_.call(this, 'Projective point not representable on the Cartesian plane.')
}
}