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