Github user tillrohrmann commented on a diff in the pull request: https://github.com/apache/flink/pull/4597#discussion_r139805450 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/rest/messages/ErrorResponseBody.java --- @@ -38,6 +40,10 @@ public ErrorResponseBody(String error) { this(Collections.singletonList(error)); } + public ErrorResponseBody(Throwable throwable) { --- End diff -- True. Will remove it.
---