UNPKG

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

20 lines (18 loc) 466 B
import RuntimeException from '../../../../java/lang/RuntimeException' export default class AssertionFailedException extends RuntimeException { constructor () { super() if (arguments.length === 0) { RuntimeException.call(this) } else if (arguments.length === 1) { let message = arguments[0] RuntimeException.call(this, message) } } interfaces_ () { return [] } getClass () { return AssertionFailedException } };