14 lines
347 B
JavaScript
Raw Normal View History

2026-05-31 13:21:13 +02:00
import { DOMException } from "../_internal/DOMException.mjs";
//#region src/error/TimeoutError.ts
/**
* An error class representing a timeout operation.
* @augments DOMException
*/
var TimeoutError = class extends DOMException {
constructor(message = "The operation was timed out") {
super(message);
}
};
//#endregion
export { TimeoutError };