OcrClientNotFound.java 390 B

12345678910111213
  1. package com.qmth.ops.biz.ai.exception;
  2. import com.qmth.boot.core.ai.model.ocr.OcrType;
  3. import com.qmth.boot.core.exception.NotFoundException;
  4. public class OcrClientNotFound extends NotFoundException {
  5. private static final long serialVersionUID = 6299687661502614806L;
  6. public OcrClientNotFound(OcrType type) {
  7. super("OCR api client not found for type: " + type);
  8. }
  9. }