@openid4vc/openid4vci 0.3.0-alpha-20251021082313 → 0.3.0-alpha-20251029091020
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -869,7 +869,7 @@ function getCredentialConfigurationsMatchingRequestFormat({ requestFormat, crede
|
|
|
869
869
|
//#region src/error/Openid4vciError.ts
|
|
870
870
|
var Openid4vciError = class extends Error {
|
|
871
871
|
constructor(message, options) {
|
|
872
|
-
const errorMessage = message ?? "Unknown error
|
|
872
|
+
const errorMessage = message ?? "Unknown error occurred.";
|
|
873
873
|
const causeMessage = options?.cause instanceof Error ? ` ${options.cause.message}` : options?.cause ? ` ${options?.cause}` : "";
|
|
874
874
|
super(`${errorMessage}${causeMessage}`);
|
|
875
875
|
this.cause = options?.cause;
|