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

net.gdface.image.NotImageException Maven / Gradle / Ivy

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


/**
 * 非图像数据
 * @author guyadong
 */
public class NotImageException extends ImageErrorException {

	private static final long serialVersionUID = -2929925579607787681L;

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

	public NotImageException() {
	}

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy