package com.example.client.entity; /** * Copyright (c) 2018 人人开源 All rights reserved. * * https://www.renren.io * * 版权所有,侵权必究! */ import com.example.client.utils.MessageUtils; /** * 自定义异常 * * @author Mark sunlightcs@gmail.com */ public class RenException extends RuntimeException { private static final long serialVersionUID = 1L; private int code; private String msg; public RenException(int code) { this.code = code; this.msg = MessageUtils.getMessage(code); } public RenException(int code, String... params) { this.code = code; this.msg = MessageUtils.getMessage(code, params); } public RenException(int code, Throwable e) { super(e); this.code = code; this.msg = MessageUtils.getMessage(code); } public RenException(int code, Throwable e, String... params) { super(e); this.code = code; this.msg = MessageUtils.getMessage(code, params); } public RenException(String msg) { super(msg); this.code = ErrorCode.INTERNAL_SERVER_ERROR.getCode(); this.msg = msg; } public RenException(ErrorCode code) { this.code = code.getCode(); this.msg = code.getMessage(); } public RenException(String msg, Throwable e) { super(msg, e); this.code = ErrorCode.INTERNAL_SERVER_ERROR.getCode(); this.msg = msg; } public String getMsg() { return msg; } public void setMsg(String msg) { this.msg = msg; } public int getCode() { return code; } public void setCode(int code) { this.code = code; } }