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