hedera-sdk-java
hedera-sdk-java copied to clipboard
The SDK should not swallow exceptions
Problem
There are various places through the SDK where exceptions that should be raised to the user of the SDK are being swallowed.
https://github.com/hashgraph/hedera-sdk-java/blob/main/sdk/src/main/java/com/hedera/hashgraph/sdk/Client.java#L523 https://github.com/hashgraph/hedera-sdk-java/blob/main/sdk/src/main/java/com/hedera/hashgraph/sdk/Client.java#L550
Solution
We should allow the user of the SDK to handle the exception.
Alternatives
No response