UNPKG

@vechain/sdk-errors

Version:

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

12 lines (9 loc) 275 B
import { VechainSDKError } from '../sdk-error'; /** * Poll execution error. * * WHEN TO USE: * * Error will be thrown when a poll execution of a function throw error */ class PollExecution extends VechainSDKError<{ functionName: string }> {} export { PollExecution };