@vechain/sdk-errors
Version:
This module is dedicated to managing and customizing errors within the VeChain SDK
13 lines (10 loc) • 312 B
text/typescript
import { VechainSDKError } from '../sdk-error';
import { type ObjectErrorData } from '../types';
/**
* Signer method error.
*
* WHEN TO USE:
* * This error will be thrown when a signer method has failed.
*/
class SignerMethodError extends VechainSDKError<ObjectErrorData> {}
export { SignerMethodError };