hashgraph / hedera-transaction-tool

Transaction tool application
Apache License 2.0
0 stars 0 forks source link

Empty or Missing Catch Statements #1136

Open jbair06 opened 1 week ago

jbair06 commented 1 week ago

Problem

Some instances of a try block were found where no catch exists. This is likely not an issue, but should be reviewed. An example can be found in front-end/src/renderer/pages/UserLogin/UserLogin.vue#127 (the line may vary).

Solution

Review usage of try block. Add catch if potential error can be consumed by the try block.

Alternatives

No response