Versions Compared

Key

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

...

INVALID_KEY(45, new InvalidKeyException("Message key cannot be null for a log compacted topicis invalid."))

Exception :

Code Block
languagejava
public class InvalidKeyException extends ApiException {
    
private static final long serialVersionUID = 1L;

    public InvalidKeyException() {
        super();
    }

    public InvalidKeyException(String message, Throwable cause) {
        super(message, cause);
    }

    public InvalidKeyException(String message) {
        super(message);
    }

    public InvalidKeyException(Throwable cause) {
        super(cause);
    }
}

...