@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) • 433 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.CommandAlreadyExistsError = void 0;
class CommandAlreadyExistsError {
constructor(command) {
this.name = 'CommandAlreadyExists';
this.message = `The command "${command}" already exists in the system.`;
}
}
exports.CommandAlreadyExistsError = CommandAlreadyExistsError;
//# sourceMappingURL=CommandAlreadyExistsError.js.map
;