@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) • 389 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.InvalidLicenseError = void 0;
class InvalidLicenseError extends Error {
constructor(validationResult) {
super('Invalid app license');
this.validationResult = validationResult;
}
}
exports.InvalidLicenseError = InvalidLicenseError;
//# sourceMappingURL=InvalidLicenseError.js.map
;