cn.easyproject.easyocr.EasyOCRException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easyocr Show documentation
Show all versions of easyocr Show documentation
Java Image cleanup, OCR recognition component (based Tesseract OCR engine, automatically cleanup image and identification CAPTCHA verification code picture content).
The newest version!
package cn.easyproject.easyocr;
/**
* ORC识别异常类
*
* @author Ray
* @author [email protected]
* @author easyproject.cn
* @version 3.0.3
*
*/
public class EasyOCRException extends RuntimeException {
private static final long serialVersionUID = -1719360158193519744L;
public EasyOCRException(String msg) {
super(msg);
}
public EasyOCRException(String msg,Throwable throwable) {
super(msg, throwable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy