Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -164,7 +164,7 @@ public DynamicObject translate(Throwable throwable) {

final String message;

if (throwable.getMessage().startsWith("LLVM error")) {
if (throwable.getMessage() != null && throwable.getMessage().startsWith("LLVM error")) {
message = throwable.getMessage();
} else {
final StringBuilder messageBuilder = new StringBuilder();

0 comments on commit 3ee9217

Please sign in to comment.