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

net.gdface.exception.SaveImgFailException Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package net.gdface.exception;

/**
 * 图像存储失败
 * 
 * @author guyadong
 *
 */
public class SaveImgFailException extends BaseFaceException {

	public SaveImgFailException(Throwable cause) {
		super(cause);
	}

	private static final long serialVersionUID = -8000938520880615505L;

	public SaveImgFailException() {
	}

	public SaveImgFailException(String s) {
		super(s);
	}

	public SaveImgFailException(String s, Throwable cause) {
		super(s, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy