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