nestjs-resilience
Version:
A module for improving the reliability and fault-tolerance of your NestJS applications
11 lines (10 loc) • 422 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.TimeoutException = void 0;
const resilience_runtime_exception_1 = require("./resilience-runtime.exception");
class TimeoutException extends resilience_runtime_exception_1.ResilienceRuntimeException {
constructor(timeout) {
super(`Operation timed out after ${timeout}ms`);
}
}
exports.TimeoutException = TimeoutException;
;