com.wudaosoft.commons.mvc.exception.ServiceException Maven / Gradle / Ivy
/*
* Copyright(c)2010-2014 WUDAOSOFT.COM
*
* Email:[email protected]
*
* QQ:275100589
*/
package com.wudaosoft.commons.mvc.exception;
import com.wudaosoft.commons.mvc.ResultData;
import com.wudaosoft.commons.mvc.ReturnData;
/**
* @author Changsoul Wu
*
*/
public class ServiceException extends RuntimeException {
public static final ServiceException PARAMETER_EXCEPTION = new ServiceException(100, "Invalid parameter.");
private static final long serialVersionUID = 3529318243869480912L;
private int errCode = -1;
private String errMsg = "System error.";
public int getErrCode() {
return errCode;
}
public void setErrCode(int errCode) {
this.errCode = errCode;
}
public String getErrMsg() {
return errMsg;
}
public void setErrMsg(String errMsg) {
this.errMsg = errMsg;
}
public ServiceException() {
super();
}
public ServiceException(String message, Throwable cause) {
super(message, cause);
this.errMsg = message;
}
public ServiceException(String message) {
super(message);
this.errMsg = message;
}
public ServiceException(Throwable cause) {
super(cause);
this.errMsg = cause.getMessage();
}
public ServiceException(int errCode, String errMsg) {
super(errMsg);
this.errCode = errCode;
this.errMsg = errMsg;
}
/**
*
*/
public String toJsonString() {
return "{\"errCode\":"+errCode+",\"errMsg\":\""+errMsg+"\"}";
}
public ResultData getResultData() {
return new ResultData(errCode, errMsg);
}
public ReturnData getReturnData() {
return new ReturnData(errCode, errMsg);
}
public static void throwParameterException() {
throw PARAMETER_EXCEPTION;
}
}