Files
inji-wallet/shared/error/UnsupportedVCFormat.ts
KiruthikaJeyashankar 7e0d180b05 [INJIMOB-1078] use credentialConfigurationId instead of credentialDefinition's type
To identify matching issuer metadata details exposed by wellknown of the VC, previously credentialDefinition's type was used now it is getting replaced by credentialConfigurationId (this holds the keyValues of credential_configrations_supported object)

Signed-off-by: KiruthikaJeyashankar <81218987+KiruthikaJeyashankar@users.noreply.github.com>
2024-09-13 15:30:27 +05:30

7 lines
145 B
TypeScript

export class UnsupportedVcFormat extends Error {
constructor(format: string) {
super(format);
this.name = 'UnsupportedVcFormat';
}
}