Skip to content

Commit a0eb829

Browse files
committed
feat: implement granular try-catch in plugin-coinbase
1 parent 4eab376 commit a0eb829

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/plugin-coinbase/index.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
try {
2+
// Code that may throw an error
3+
} catch (error) {
4+
console.error('Specific error message:', error);
5+
// Handle specific error
6+
}

0 commit comments

Comments
 (0)