| | |
| | | package com.yeshi.fanli.exception.push;
|
| | |
|
| | | public class VIVOPushException extends Exception {
|
| | | import com.yeshi.fanli.exception.BaseException;
|
| | |
|
| | | public class VIVOPushException extends BaseException {
|
| | |
|
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | | private int code;
|
| | | private String msg;
|
| | |
|
| | | public VIVOPushException() {}
|
| | | |
| | | public VIVOPushException(int code, String msg) {
|
| | | this.code = code;
|
| | | this.msg = msg;
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public int getCode() {
|
| | | return code;
|
| | | public VIVOPushException() {
|
| | | super();
|
| | | }
|
| | |
|
| | | public String getMsg() {
|
| | | return msg;
|
| | | }
|
| | |
|
| | | @Override
|
| | | public String getMessage() {
|
| | | return this.msg;
|
| | | }
|
| | |
|
| | | }
|