001package net.gdface.image;
002
003
004/**
005 * 不支持的图像格式
006 * @author guyadong
007 *
008 */
009public class UnsupportedFormatException extends ImageErrorException {
010
011        private static final long serialVersionUID = 5515183993603303378L;
012
013        public UnsupportedFormatException(Throwable cause) {
014                super(cause);
015        }
016
017        public UnsupportedFormatException() {
018        }
019
020        public UnsupportedFormatException(String s) {
021                super(s);
022        }
023
024        public UnsupportedFormatException(String s, Throwable cause) {
025                super(s, cause);
026        }
027
028}