package org.yeshi.utils.push.exception; public class VIVOPushException extends Exception { private String code; private String msg; public VIVOPushException(String code, String msg) { super(code + ":" + msg); this.code = code; this.msg = msg; } public VIVOPushException(String msg) { super(msg); } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getMsg() { return msg; } public void setMsg(String msg) { this.msg = msg; } }