| | |
| | | * @author: huang.hongfa weixin hhf9596 qq 959656820 |
| | | * @create: 2020-12-28 14:13 |
| | | **/ |
| | | public class ServiceException extends RuntimeException{ |
| | | public class ServiceException extends RuntimeException { |
| | | |
| | | private String code; |
| | | private String msg; |
| | | private String data; |
| | | |
| | | public ServiceException() { |
| | | super(); |
| | | } |
| | | |
| | | |
| | | |
| | | public ServiceException(String errorMsg) { |
| | | super(errorMsg); |
| | |
| | | this.msg = errorMsg; |
| | | } |
| | | |
| | | public ServiceException(String errorCode, String errorMsg, String data) { |
| | | super(errorCode); |
| | | this.code = errorCode; |
| | | this.msg = errorMsg; |
| | | this.data = data; |
| | | } |
| | | |
| | | public ServiceException(String errorCode, String errorMsg, Throwable cause) { |
| | | super(errorCode, cause); |
| | | this.code = errorCode; |
| | | this.msg = errorMsg; |
| | | } |
| | | |
| | | |
| | | public String getErrorCode() { |
| | | return code; |