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