@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) • 492 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.CommandHasAlreadyBeenTouchedError = void 0;
class CommandHasAlreadyBeenTouchedError {
constructor(command) {
this.name = 'CommandHasAlreadyBeenTouched';
this.message = `The command "${command}" has already been touched by another App.`;
}
}
exports.CommandHasAlreadyBeenTouchedError = CommandHasAlreadyBeenTouchedError;
//# sourceMappingURL=CommandHasAlreadyBeenTouchedError.js.map
;