cadonna commented on code in PR #15573:
URL: https://github.com/apache/kafka/pull/15573#discussion_r1538822089


##########
streams/src/main/java/org/apache/kafka/streams/errors/MissingSourceTopicException.java:
##########
@@ -16,11 +16,25 @@
  */
 package org.apache.kafka.streams.errors;
 
+import java.util.HashSet;
+import java.util.Set;
+
 public class MissingSourceTopicException extends StreamsException {
 
     private final static long serialVersionUID = 1L;
+    private final Set<String> missingTopics;
 
     public MissingSourceTopicException(final String message) {
         super(message);
+        this.missingTopics = new HashSet<>();
+    }
+
+    public MissingSourceTopicException(final String message, final Set<String> 
missingTopics) {
+        super(message);
+        this.missingTopics = missingTopics;
+    }
+
+    public Set<String> getMissingTopics() {
+        return this.missingTopics;

Review Comment:
   Don't worry! We are also here to guide new contributors.



-- 
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: jira-unsubscr...@kafka.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to