Files
2026-04-13 08:19:53 +08:00

13 lines
289 B
JavaScript

'use strict';
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
class TimeoutError extends Error {
constructor(message = 'The operation was timed out') {
super(message);
this.name = 'TimeoutError';
}
}
exports.TimeoutError = TimeoutError;