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