UNPKG

@hadesz/monitor

Version:

A complete server monitoring system with agents, server and dashboard

9 lines (8 loc) 236 B
/** * Error subclass to use when an HTTP application error has occurred. */ export default class HTTPError extends Error { code: string; statusCode: number; constructor(statusCode: number, message?: string | undefined); }