10 lines
222 B
JavaScript
10 lines
222 B
JavaScript
import { DOMException } from '../_internal/DOMException.mjs';
|
|
|
|
class TimeoutError extends DOMException {
|
|
constructor(message = 'The operation was timed out') {
|
|
super(message);
|
|
}
|
|
}
|
|
|
|
export { TimeoutError };
|