UNPKG

282 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.TimeoutError = void 0;
7
8class TimeoutError extends Error {
9 constructor(util, timeout) {
10 super(`Timed out in ${util.name} after ${timeout}ms.`);
11 }
12
13}
14
15exports.TimeoutError = TimeoutError;
\No newline at end of file