All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.easyproject.easyocr.EasyOCRException Maven / Gradle / Ivy

Go to download

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