IllegalEntityStateException.java 291 B

123456789101112
  1. package com.provectus.kafka.ui.exception;
  2. public class IllegalEntityStateException extends CustomBaseException {
  3. public IllegalEntityStateException(String message) {
  4. super(message);
  5. }
  6. @Override
  7. public ErrorCode getErrorCode() {
  8. return ErrorCode.INVALID_ENTITY_STATE;
  9. }
  10. }