package com.ycsoft.commons.exception; /** * 所有服务层的类,如果需要捕捉异常。则必须向上抛出该类型的异常。 * @author <a href='mailTo:huanghui2004@hotmail.com'>hh</a> */ public class ServicesException extends Exception { /** * */ private static final long serialVersionUID = 2758171495592228753L; private ErrorCode errorCode; public ServicesException(String message,ErrorCode errorCode){ super(message); this.errorCode=errorCode; } public static ServicesException createUnknowException(String msg ,Exception e){ ServicesException ex=new ServicesException(msg,e); ex.errorCode=ErrorCode.UNKNOW_EXCEPTION; return ex; } public ServicesException(ErrorCode errorCode){ super(errorCode.getDesc()); this.errorCode=errorCode; } public ServicesException(ErrorCode errorCode,Object ... args){ super(String.format(errorCode.getDesc(), args)); this.errorCode=errorCode; } public ServicesException(ErrorCode errorCode ,Exception e){ super( errorCode.getDesc() , e ); this.errorCode=errorCode; } public ServicesException(ErrorCode errorCode ,Exception e,Object ... args){ super( String.format(errorCode.getDesc(),args) , e ); this.errorCode=errorCode; } public ServicesException( String msg ){ super(msg); } public ServicesException( Exception e){ super(e); } public ServicesException( String msg ,Exception e){ super( msg , e ) ; } public ErrorCode getErrorCode(){ return errorCode; } }