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
14 lines (12 loc) • 315 B
JavaScript
import Exception from '../../../../java/lang/Exception'
export default class NotRepresentableException extends Exception {
constructor () {
super('Projective point not representable on the Cartesian plane.')
}
interfaces_ () {
return []
}
getClass () {
return NotRepresentableException
}
}