![JAR search and dependency download from the Maven repository](/logo.png)
com.mobaijun.excel.exception.ExcelException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel-spring-boot-starter Show documentation
Show all versions of excel-spring-boot-starter Show documentation
This is a spring boot quick starter, mainly used to operate excel
package com.mobaijun.excel.exception;
import com.mobaijun.excel.constant.ExcelConstants;
/**
* software:IntelliJ IDEA 2022.1
* class name: ExcelException
* class description: Excel 操作异常信息
*
* @author MoBaiJun 2022/10/27 16:00
*/
public class ExcelException extends RuntimeException {
public ExcelException(Throwable message) {
super(ExcelConstants.OFFICE_MODULE_NAME, message);
}
public ExcelException(String code, Throwable message) {
super(code,message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy