UNPKG

homebridge-config-ui-x

Version:

A web based management, configuration and control platform for Homebridge

13 lines (12 loc) 285 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class RuntimeException extends Error { constructor(msg = ``) { super(msg); this.msg = msg; } what() { return this.msg; } } exports.RuntimeException = RuntimeException;