UNPKG

@vechain/sdk-errors

Version:

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

12 lines (9 loc) 258 B
import { VechainSDKError } from '../sdk-error'; /** * Invalid address error * * WHEN TO USE: * * This error will be thrown when the address is invalid. */ class InvalidAddress extends VechainSDKError<{ address: string }> {} export { InvalidAddress };