UNPKG

@tomneutens/serial_monitor

Version:

A web based serial monitor for communicating with serial devices (like Arduino). The library is based on native web components and uses the WebSerial API to communicate with the external device.

10 lines 355 B
/** * @author Tom Neutens <tomneutens@gmail.com> */ class InvalidArugmentError extends Error { constructor(argumentName, expectedFormat) { super(`The argument ${argumentName} does not adhere to the input requirements: ${expectedFormat}`); } } export default InvalidArugmentError; //# sourceMappingURL=InvalidArgumentError.js.map