mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-09 05:27:57 -05:00
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>
7 lines
145 B
TypeScript
7 lines
145 B
TypeScript
export class UnsupportedVcFormat extends Error {
|
|
constructor(format: string) {
|
|
super(format);
|
|
this.name = 'UnsupportedVcFormat';
|
|
}
|
|
}
|