io.github.mengfly.excel.report.exception.TemplateNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel-report Show documentation
Show all versions of excel-report Show documentation
A framework for generating excel reports. easily export report with Excel.
The newest version!
package io.github.mengfly.excel.report.exception;
public class TemplateNotFoundException extends ExcelReportException {
public TemplateNotFoundException(String templateId) {
super("Template not found : " + templateId);
}
}