@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
13 lines (11 loc) • 371 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.MustExtendAppError = void 0;
class MustExtendAppError {
constructor() {
this.name = 'MustExtendApp';
this.message = 'App must extend the "App" abstract class.';
}
}
exports.MustExtendAppError = MustExtendAppError;
//# sourceMappingURL=MustExtendAppError.js.map
;