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