Skip to content

Commit

Permalink
Merge branch '3.7-dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
spmallette committed Dec 6, 2023
2 parents 73ee22f + 4e1bbf3 commit a5ffbeb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
[[release-3-6-7]]
=== TinkerPop 3.6.7 (NOT OFFICIALLY RELEASED YET)
* Improved error message from `JavaTranslator` by including exception source.
[[release-3-6-6]]
=== TinkerPop 3.6.6 (November 20, 2023)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ else if (object instanceof Bytecode) {
}
return traversal;
} catch (final Throwable e) {
throw new IllegalStateException(e.getMessage());
throw new IllegalStateException(e.getMessage(), e);
}
}
} else if (object instanceof TraversalStrategyProxy) {
Expand Down

0 comments on commit a5ffbeb

Please sign in to comment.