-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(present-proof): resolved feedback but proof is not included
Signed-off-by: Berend Sliedrecht <[email protected]>
- Loading branch information
1 parent
985b19b
commit f3e1534
Showing
10 changed files
with
154 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 11 additions & 1 deletion
12
packages/core/src/modules/presentation-exchange/PresentationExchangeError.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
import { AriesFrameworkError } from '../../error' | ||
|
||
export class PresentationExchangeError extends AriesFrameworkError {} | ||
export class PresentationExchangeError extends AriesFrameworkError { | ||
public additionalMessages?: Array<string> | ||
|
||
public constructor( | ||
message: string, | ||
{ cause, additionalMessages }: { cause?: Error; additionalMessages?: Array<string> } = {} | ||
) { | ||
super(message, { cause }) | ||
this.additionalMessages = additionalMessages | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.