basant307/AI_Governance_Project
048
1'use strict';2 3Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });4 5const DOMException = require('../_internal/DOMException.js');6 7class TimeoutError extends DOMException.DOMException {8 constructor(message = 'The operation was timed out') {9 super(message);10 }11}12 13exports.TimeoutError = TimeoutError;14 