UNPKG

jsonld-signatures-merkleproof2019

Version:

A jsonld signature implementation to support MerkleProof2019 verification in Verifiable Credential context

9 lines (7 loc) 187 B
export default class VerifierError extends Error { public stepCode: string; constructor (stepCode: string, message: string) { super(message); this.stepCode = stepCode; } }