UNPKG

@lodestar/api

Version:

A Typescript REST client for the Ethereum Consensus API

10 lines (8 loc) 244 B
import {HttpErrorCodes} from "../httpStatusCode.js"; export class ApiError extends Error { statusCode: HttpErrorCodes; constructor(statusCode: HttpErrorCodes, message?: string) { super(message); this.statusCode = statusCode; } }