@homebridge/ciao
Version:
ciao is a RFC 6763 compliant dns-sd library, advertising on multicast dns (RFC 6762) implemented in plain Typescript/JavaScript
12 lines • 455 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InterfaceNotFoundError = exports.ERR_INTERFACE_NOT_FOUND = void 0;
exports.ERR_INTERFACE_NOT_FOUND = "ERR_INTERFACE_NOT_FOUND";
class InterfaceNotFoundError extends Error {
constructor(message) {
super(message);
this.name = "ERR_INTERFACE_NOT_FOUND";
}
}
exports.InterfaceNotFoundError = InterfaceNotFoundError;
//# sourceMappingURL=errors.js.map