@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) • 534 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.NotEnoughMethodArgumentsError = void 0;
class NotEnoughMethodArgumentsError {
constructor(method, requiredCount, providedCount) {
this.name = 'NotEnoughMethodArgumentsError';
this.message = `The method "${method}" requires ${requiredCount} parameters but was only passed ${providedCount}.`;
}
}
exports.NotEnoughMethodArgumentsError = NotEnoughMethodArgumentsError;
//# sourceMappingURL=NotEnoughMethodArgumentsError.js.map
;