import {createCustomError} from "../custom-error/create-custom-error.mjs";
import {ABORT_ERROR_NAME} from "./abort-error-name.constant.mjs";
export function createAbortError(options) {
return Object.assign(createCustomError(ABORT_ERROR_NAME, {
message: 'Aborted',
...options
}), options);
}