UNPKG

nestjs-resilience

Version:

A module for improving the reliability and fault-tolerance of your NestJS applications

11 lines (10 loc) 404 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ThrottlerException = void 0; const resilience_runtime_exception_1 = require("./resilience-runtime.exception"); class ThrottlerException extends resilience_runtime_exception_1.ResilienceRuntimeException { constructor() { super(`Rate limit exceeded`); } } exports.ThrottlerException = ThrottlerException;