node-red-contrib-tak-registration
Version:
A Node-RED node to register to TAK and to help wrap files as datapackages to send to TAK
11 lines (10 loc) • 355 B
JavaScript
import Exception from '../../../../java/lang/Exception'
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.')
}
}