SchemaCompatibilityException.java 336 B

123456789101112
  1. package com.provectus.kafka.ui.exception;
  2. public class SchemaCompatibilityException extends CustomBaseException {
  3. public SchemaCompatibilityException() {
  4. super("Schema being registered is incompatible with an earlier schema");
  5. }
  6. @Override
  7. public ErrorCode getErrorCode() {
  8. return ErrorCode.UNPROCESSABLE_ENTITY;
  9. }
  10. }