@vechain/sdk-errors
Version:
This module is dedicated to managing and customizing errors within the VeChain SDK
14 lines (11 loc) • 424 B
text/typescript
import { VechainSDKError } from '../sdk-error';
import { type ObjectErrorData } from '../types';
/**
* Certificate Signature error.
*
* WHEN TO USE:
* * This error will be thrown when the certificate signature is invalid
* OR the certificate is not signed, or has in general signature errors.
*/
class CertificateSignatureMismatch extends VechainSDKError<ObjectErrorData> {}
export { CertificateSignatureMismatch };