Skip to content

Commit

Permalink
[EN-7587] Implement FetchDailyCandles sample
Browse files Browse the repository at this point in the history
JavaException::create
  • Loading branch information
AnatolyKalin committed Jun 24, 2024
1 parent 5e2f52c commit 04c38da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exceptions/JavaException.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ JavaException::JavaException(const std::string &message, const std::string &clas
stackTrace_{std::move(stackTrace) + "\n" + stackTraceToString(boost::stacktrace::stacktrace())} {
}

JavaException create(void* exceptionHandle) {
JavaException JavaException::create(void* exceptionHandle) {
if (exceptionHandle == nullptr) {
return JavaException("", "", "");
}
Expand Down

0 comments on commit 04c38da

Please sign in to comment.