Sign in

wms / wms_xianyangming · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • wms_xianyangming
  • ..
  • exception
  • BusinessException.java
  • 添加物料导入、导出模板,添加Excel导入导出配置文件
    8ac9ed02
    mahuandong authored
    2019-08-15 09:40:17 +0800  
    Browse Code »
BusinessException.java 398 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
package com.huaheng.common.exception;

/**
 * 业务异常
 *
 * @author huaheng
 */
public class BusinessException extends RuntimeException{
    private static final long serialVersionUID = 1L;

    protected final String message;

    public BusinessException(String message) {
        this.message = message;
    }

    @Override
    public String getMessage() {
        return message;
    }
}