yujian
2020-05-09 7e7db2fa55a9a3af46d4fd8ede0dee147f101d64
fanli/src/main/java/com/yeshi/fanli/exception/integral/IntegralExchangeException.java
@@ -1,32 +1,16 @@
package com.yeshi.fanli.exception.integral;
public class IntegralExchangeException extends Exception {
   /**
    *
    */
import com.yeshi.fanli.exception.BaseException;
public class IntegralExchangeException extends BaseException {
   private static final long serialVersionUID = 1L;
   private int code;
   private String msg;
   public int getCode() {
      return code;
   }
   public String getMsg() {
      return msg;
   }
   public IntegralExchangeException(int code, String msg) {
      this.code = code;
      this.msg = msg;
      super(code, msg);
   }
   public IntegralExchangeException() {
      super();
   }
   @Override
   public String getMessage() {
      return this.msg;
   }
}