Sha256: 8bc67501a5f953c7f7d4b12d87c82271e8d648e3322a22cdb679a76820bdca9d
Contents?: true
Size: 378 Bytes
Versions: 49
Compression:
Stored size: 378 Bytes
Contents
/** * An error thrown when duetime elapses. * * @see {@link timeout} * * @class TimeoutError */ export class TimeoutError extends Error { constructor() { const err = super('Timeout has occurred'); this.name = err.name = 'TimeoutError'; this.stack = err.stack; this.message = err.message; } } //# sourceMappingURL=TimeoutError.js.map
Version data entries
49 entries across 49 versions & 4 rubygems