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

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

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


/**
 * 不支持的图像格式
 * @author guyadong
 *
 */
public class UnsupportedFormatException extends ImageErrorException {

	private static final long serialVersionUID = 5515183993603303378L;

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

	public UnsupportedFormatException() {
	}

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy