Laserphile/JS-Telecortex-2-Server

View on GitHub
src/opc/errors.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Thrown when an incomplete OPC Message is detected
 */
export class PartialOPCMsgError extends Error {
  constructor(...args) {
    super(...args);
    Error.captureStackTrace(this, PartialOPCMsgError);
  }
}