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

13 lines
279 B
JavaScript

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