001/**   
002* @Title: DeleteImgFail.java 
003* @Package net.gdface.exception 
004* @Description: TODO 
005* @author guyadong   
006* @date 2014-10-8 下午7:27:05 
007* @version V1.0   
008*/
009package net.gdface.exception;
010
011/**删除图像文件失败
012 * @author guyadong
013 * @deprecated non-standard class name,instead use {@link DeleteImgFailException}
014 * 
015 */
016public class DeleteImgFail extends FACEException {
017
018        public DeleteImgFail(Throwable cause) {
019                super(cause);
020        }
021
022        /**
023         * 
024         */
025        private static final long serialVersionUID = 4019289165841474369L;
026
027        /**
028         * 
029         */
030        public DeleteImgFail() {
031                // TODO Auto-generated constructor stub
032        }
033
034        /**
035         * @param s
036         */
037        public DeleteImgFail(String s) {
038                super(s);
039                // TODO Auto-generated constructor stub
040        }
041
042        /**
043         * @param s
044         * @param cause
045         */
046        public DeleteImgFail(String s, Throwable cause) {
047                super(s, cause);
048                // TODO Auto-generated constructor stub
049        }
050
051}