fapaul commented on a change in pull request #17892:
URL: https://github.com/apache/flink/pull/17892#discussion_r764984783



##########
File path: 
flink-end-to-end-tests/flink-end-to-end-tests-common/src/main/java/org/apache/flink/tests/util/flink/container/ImageBuildException.java
##########
@@ -0,0 +1,18 @@
+package org.apache.flink.tests.util.flink.container;
+
+/** Exception indicating errors when building Flink image. */
+public class ImageBuildException extends Exception {
+    public ImageBuildException() {}
+
+    public ImageBuildException(String message) {
+        super(message);
+    }
+
+    public ImageBuildException(String message, Throwable cause) {
+        super(message, cause);
+    }
+
+    public ImageBuildException(Throwable cause) {
+        super(cause);
+    }

Review comment:
       Maybe it makes sense to only pass the imageName as an argument and 
template the string inside of the `ImageBuildException`




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to