abort-error.js 218 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import {FetchBaseError} from './base.js'; /** * AbortError interface for cancelled requests */ export class AbortError extends FetchBaseError { constructor(message, type = 'aborted') { super(message, type); } }