package com.fuzamei.common.exception; /** * @file_name: G33Exception * @Description: * @author: 刘林杰 * @date: 五月 2018/5/3 10:48 * @version: */ public class G33Exception extends RuntimeException{ private Integer code; public G33Exception(String msg) { super(msg); } public Integer getCode() { return code; } public void setCode(Integer code) { this.code = code; } public G33Exception(Integer code, String msg) { super(msg); this.code = code; } }