package com.team.zhuoke.net.exception; /** * 作者:${User} * 电话:18810474975 * 邮箱:18810474975@163.com * 版本号: * 类描述: * 修改时间:${DATA}1904 */ public class ResponeThrowable extends Exception { public int code; public String message; public ResponeThrowable(Throwable throwable, int code) { super(throwable); this.code = code; } }