Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
538 B
JavaScript
12 lines
538 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.ThrottlerException = exports.throttlerMessage = void 0;
|
|
const common_1 = require("@nestjs/common");
|
|
exports.throttlerMessage = 'ThrottlerException: Too Many Requests';
|
|
class ThrottlerException extends common_1.HttpException {
|
|
constructor(message) {
|
|
super(`${message || exports.throttlerMessage}`, common_1.HttpStatus.TOO_MANY_REQUESTS);
|
|
}
|
|
}
|
|
exports.ThrottlerException = ThrottlerException;
|
|
//# sourceMappingURL=throttler.exception.js.map
|