package com.zcy.ghost.vivideo.model.exception; /** * Created by 12262 on 2016/5/31. */ public class ServerException extends RuntimeException { private int code; private String msg; public ServerException(int code, String msg) { this.code = code; this.msg = msg; } public int getCode() { return code; } public String getMsg() { return msg; } }