UNPKG

@hadesz/monitor

Version:

A complete server monitoring system with agents, server and dashboard

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); } }