mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 14:21:00 +00:00
14 lines
340 B
JavaScript
14 lines
340 B
JavaScript
import { DOMException } from "../_internal/DOMException.mjs";
|
|
//#region src/error/AbortError.ts
|
|
/**
|
|
* An error class representing an aborted operation.
|
|
* @augments DOMException
|
|
*/
|
|
var AbortError = class extends DOMException {
|
|
constructor(message = "The operation was aborted") {
|
|
super(message);
|
|
}
|
|
};
|
|
//#endregion
|
|
export { AbortError };
|