UNPKG

@skybloxsystems/ticket-bot

Version:
11 lines (9 loc) 218 B
import {FetchBaseError} from './base.js'; /** * AbortError interface for cancelled requests */ export class AbortError extends FetchBaseError { constructor(message, type = 'aborted') { super(message, type); } }