Skip to content

Commit 2325bc9

Browse files
cleanup
1 parent 60b42b6 commit 2325bc9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

cpp/bindings.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ void transactionFinalizerHandler(const TransactionCallbackPayload *payload) {
9999
handlerFunction.call(*runtime, move(jsiDbName), move(jsiEventType));
100100
} catch (jsi::JSINativeException e) {
101101
std::cout << e.what() << std::endl;
102+
} catch (const std::exception& e) {
103+
std::cout << "Standard Exception: " << e.what() << std::endl;
102104
} catch (...) {
103105
std::cout << "Unknown error" << std::endl;
104106
}

0 commit comments

Comments
 (0)