UNPKG

@rocket.chat/apps-engine

Version:

The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.

23 lines (21 loc) 784 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.EssentialAppDisabledException = void 0; const _1 = require("."); /** * This exception informs the host system that an * app essential to the execution of a system action * is disabled, so the action should be halted. * * Apps can register to be considered essential to * the execution of internal events of the framework * such as `IPreMessageSentPrevent`, `IPreRoomUserJoined`, * etc. * * This is used interally by the framework and is not * intended to be thrown manually by apps. */ class EssentialAppDisabledException extends _1.AppsEngineException { } exports.EssentialAppDisabledException = EssentialAppDisabledException; //# sourceMappingURL=EssentialAppDisabledException.js.map