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