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