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