mjsax commented on code in PR #16725: URL: https://github.com/apache/kafka/pull/16725#discussion_r1696297327
########## streams/src/main/java/org/apache/kafka/streams/processor/internals/ProcessorNode.java: ########## @@ -203,7 +203,7 @@ public void process(final Record<KIn, VIn> record) { } catch (final FailedProcessingException | TaskCorruptedException | TaskMigratedException e) { // Rethrow exceptions that should not be handled here throw e; - } catch (final Exception e) { + } catch (final RuntimeException e) { Review Comment: Side cleanup -- no reason to catch `Exception` as no checked exceptions are declared (same below) -- 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