Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
firstline1
titleTransactionExceptionHandler
linenumberstrue
collapsetrue
package org.apache.kafka.common.errors;

/**
 * {@code ClientExceptionHandler} that continuesdecides on continuing the transaction evenor ifaborting ait recordbased is too large.
 * Otherwise, it makes on the transactionexception to failtype.
 */
public class TransactionExceptionHandler implements ClientExceptionHandler {

    @Override
    public ClientExceptionHandlerResponse handle(final Exception exception);
}

...