KAFKA-12281: Deprecate BrokerNotFoundException (#20192)
CI / build (push) Waiting to run Details

Implements KIP-1195.

BrokerNotFoundException exception is unused since 2.8  Marking it
deprecated so that it can be removed in next major release.

Reviewers: Matthias J. Sax <matthias@confluent.io>
This commit is contained in:
Rajani K 2025-07-29 03:48:34 +05:30 committed by GitHub
parent 7339d65b27
commit de2adb69de
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -21,8 +21,10 @@ package org.apache.kafka.streams.errors;
* could be found.
*
* @see org.apache.kafka.streams.StreamsConfig
* @deprecated since 4.2 and should not be used any longer.
*/
@SuppressWarnings("unused")
@Deprecated
public class BrokerNotFoundException extends StreamsException {
private static final long serialVersionUID = 1L;