UNPKG

node-circuit-breaker

Version:

Circuit Breaker: Decorators and tools that can easily apply the Circuit Breaker pattern.

11 lines (10 loc) 322 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ExecutionTimeoutError = void 0; class ExecutionTimeoutError extends Error { constructor(message, timeTaken) { super(message); this.timeTaken = timeTaken; } } exports.ExecutionTimeoutError = ExecutionTimeoutError;