SchemaNotFoundException.java 353 B

1234567891011121314151617
  1. package com.provectus.kafka.ui.exception;
  2. public class SchemaNotFoundException extends CustomBaseException {
  3. public SchemaNotFoundException() {
  4. super("Schema not found");
  5. }
  6. public SchemaNotFoundException(String message) {
  7. super(message);
  8. }
  9. @Override
  10. public ErrorCode getErrorCode() {
  11. return ErrorCode.SCHEMA_NOT_FOUND;
  12. }
  13. }