@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) • 462 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.MustContainFunctionError = void 0;
class MustContainFunctionError {
constructor(fileName, funcName) {
this.name = 'MustContainFunction';
this.message = `The App (${fileName}) doesn't have a "${funcName}" function which is required.`;
}
}
exports.MustContainFunctionError = MustContainFunctionError;
//# sourceMappingURL=MustContainFunctionError.js.map
;