feat(errors): add new entity types for bank connections and transactions

Adds EntityBankConnection and EntityBankTransaction to the
errors package to enhance error handling capabilities related
to banking operations. This improves the clarity and
specificity of error messages associated with bank-related
entities.
This commit is contained in:
2025-11-05 20:08:32 +01:00
parent d918229d4a
commit d32e0ad41b
+2
View File
@@ -36,6 +36,8 @@ const (
EntityTag = Entity("TAG")
EntityEntry = Entity("ENTRY")
EntityEntryBasis = Entity("ENTRY_BASIS")
EntityBankConnection = Entity("BANK_CONNECTION")
EntityBankTransaction = Entity("BANK_TRANSACTION")
)
type CodedError struct {