001package net.gdface.exception;
002
003/**
004 * 图像存储失败
005 * 
006 * @author guyadong
007 *
008 */
009public class SaveImgFailException extends BaseFaceException {
010
011        public SaveImgFailException(Throwable cause) {
012                super(cause);
013        }
014
015        private static final long serialVersionUID = -8000938520880615505L;
016
017        public SaveImgFailException() {
018        }
019
020        public SaveImgFailException(String s) {
021                super(s);
022        }
023
024        public SaveImgFailException(String s, Throwable cause) {
025                super(s, cause);
026        }
027
028}