UNPKG

@vechain/sdk-errors

Version:

This module is dedicated to managing and customizing errors within the VeChain SDK

15 lines (12 loc) 293 B
import { VechainSDKError } from '../sdk-error'; /** * Http invalid request error * * WHEN TO USE: * * Error will be thrown when an invalid HTTP request fails */ class InvalidHTTPRequest extends VechainSDKError<{ method: string; url: string; }> {} export { InvalidHTTPRequest };