001/**   
002* @Title: FException.java 
003* @Package net.gdface.exception 
004* @Description: 项目中所有异常的基类定义 
005* @author guyadong   
006* @date 2014-10-8 下午7:21:07 
007* @version V1.0   
008*/
009package net.gdface.exception;
010
011/**
012 * 项目中所有异常的基类
013 * @author guyadong
014 * @deprecated non-standard class name,instead use {@link BaseFaceException}
015 *
016 */
017public class FACEException extends Exception {
018
019        /**
020         * 
021         */
022        private static final long serialVersionUID = -745959836580373067L;
023
024        public FACEException(Throwable cause) {
025                super(cause);
026        }
027
028        /**
029         * 
030         */
031        public FACEException() {
032                // TODO Auto-generated constructor stub
033        }
034
035        /**
036         * @param s
037         */
038        public FACEException(String s) {
039                super(s);
040                // TODO Auto-generated constructor stub
041        }
042
043        /**
044         * @param s
045         * @param cause
046         */
047        public FACEException(String s, Throwable cause) {
048                super(s, cause);
049                // TODO Auto-generated constructor stub
050        }
051
052}