com.lwp.excel.exception.ExcelExportException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel Show documentation
Show all versions of excel Show documentation
Demo project for Spring Boot
The newest version!
package com.lwp.excel.exception;
/**
* Copyright (C) @2019 GuangDong Eshore Technology Co. Ltd
*
* @author: Administrator
* @version: 1.0
* @date: 2019/8/28
* @time: 16:14
* @description:
*/
public class ExcelExportException extends RuntimeException {
private final Integer code = -10006;
public ExcelExportException(String message) {
super(message);
}
public Integer getCode() {
return code;
}
}