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