001/**   
002 * @Title: InsertFail.java 
003 * @Package net.gdface.exception 
004 * @Description: TODO 
005 * @author guyadong   
006 * @date 2014-10-8 下午7:28:05 
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 InsertFailException}
016 * 
017 */
018public class InsertFail extends FACEException {
019
020        public InsertFail(Throwable cause) {
021                super(cause);
022        }
023
024        /**
025         * 
026         */
027        private static final long serialVersionUID = -6281395139949032954L;
028
029        /**
030         * 
031         */
032        public InsertFail() {
033                // TODO Auto-generated constructor stub
034        }
035
036        /**
037         * @param s
038         */
039        public InsertFail(String s) {
040                super(s);
041                // TODO Auto-generated constructor stub
042        }
043
044        /**
045         * @param s
046         * @param cause
047         */
048        public InsertFail(String s, Throwable cause) {
049                super(s, cause);
050                // TODO Auto-generated constructor stub
051        }
052
053}