-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add errors c4 * fix: update errors c4
- Loading branch information
1 parent
f222463
commit c264b13
Showing
2 changed files
with
37 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
```mermaid | ||
C4Context | ||
title "vechain-SDK Architecture Overview - Errors Package" | ||
Boundary(b0, "vechain-SDK Errors Package") { | ||
Boundary(b1, "Model") { | ||
Boundary(b2, "Core") { | ||
System(abi, "Abi", "Abi related errors") | ||
System(address, "Address", "Address related errors") | ||
System(bloom, "Bloom", "Bloom related errors") | ||
System(certificate, "Certificate", "Certificate related errors") | ||
System(data, "Data", "Data related errors") | ||
System(hdnode, "HDNode", "HDNode related errors") | ||
System(keystore, "Keystore", "Keystore related errors") | ||
System(rlp, "RLP", "RLP related errors") | ||
System(secp256k1, "Secp256k1", "Secp256k1 related errors") | ||
System(transaction, "Transaction", "Transaction related errors") | ||
} | ||
Boundary(b3, "Network") { | ||
System(http-client, "HTTPClient", "HTTPClient related errors") | ||
System(poll, "Poll", "Poll related errors") | ||
} | ||
} | ||
Boundary(b4, "Types") { | ||
System(error-type, "ErrorType", "The error type from the error code") | ||
} | ||
Boundary(b5, "Utils") { | ||
System(asserts, "Asserts", "Assert that the condition is true, otherwise throw an error.") | ||
System(error-builder, "ErrorBuilder", "Build error object according to the error code provided.") | ||
} | ||
} | ||
``` |
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
c264b13
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Test Coverage
Summary