| | |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class ExtractException extends Exception {
|
| | | public class ExtractException extends BaseException {
|
| | |
|
| | | private static final long serialVersionUID = 572112205824229000L;
|
| | |
|
| | | private int code;
|
| | | private String msg;
|
| | | |
| | | public ExtractException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public ExtractException() {
|
| | | }
|
| | |
|
| | | public ExtractException(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();
|
| | | }
|
| | | }
|