com.thomas.alib.excel.exception.AnalysisException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simple-excel Show documentation
Show all versions of simple-excel Show documentation
简单excel导入导出工具,基于Apache.poi实现,通过注解方式实现poi常用api的调用
The newest version!
package com.thomas.alib.excel.exception;
/**
* excel解析异常
*/
public class AnalysisException extends RuntimeException {
private String msg;
public AnalysisException() {
this.msg = "";
}
public AnalysisException(String message) {
this.msg = message;
}
@Override
public String getLocalizedMessage() {
return msg;
}
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
}