Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixup! beam-wide: blacklist Throwables.propagate and remove uses
  • Loading branch information
dhalperi committed May 2, 2016
commit 9e36094fb045085222e19b63718d8db13d602e19
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ public InProcessTransformResult call() {
return result;
} catch (Throwable t) {
onComplete.handleThrowable(inputBundle, t);
if (t instanceof RuntimeException) {
throw (RuntimeException) t;
}
throw new RuntimeException(t);
} finally {
transformEvaluationState.complete(this);
Expand Down