homebridge-config-ui-x
Version:
A web based management, configuration and control platform for Homebridge
10 lines (9 loc) • 394 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const runtime_exception_1 = require("./runtime.exception");
class UnknownModuleException extends runtime_exception_1.RuntimeException {
constructor() {
super('Nest could not select the given module (it does not exist in current context)');
}
}
exports.UnknownModuleException = UnknownModuleException;