001package net.gdface.image;
002
003import net.gdface.exception.BaseFaceException;
004
005/**
006 * 获取图像异常
007 * 
008 * @author guyadong
009 *
010 */
011public class ImageErrorException extends BaseFaceException {
012
013        private static final long serialVersionUID = 124609099246843533L;
014
015        public ImageErrorException(Throwable cause) {
016                super(cause);
017        }
018
019        public ImageErrorException() {
020        }
021
022        public ImageErrorException(String s) {
023                super(s);
024        }
025
026        public ImageErrorException(String s, Throwable cause) {
027                super(s, cause);
028        }
029
030}