com.github.liaochong.html2excel.exception.NoTablesException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of html2excel Show documentation
Show all versions of html2excel Show documentation
Html2excel, is a toolkit that can directly use Html files, or use the built-in Freemarker, Groovy,
Beetl and other template engine Excel builder to generate Html files, and use the Table in the Html file as an
Excel template to generate Excel of any complex layout. Supports .xls and .xlsx formats, supports
personalization of background colors, borders, fonts, etc., and supports merging of cells.
/*
* Copyright 2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.liaochong.html2excel.exception;
/**
* @author liaochong
* @version 1.0
*/
public class NoTablesException extends RuntimeException {
public NoTablesException() {
}
public NoTablesException(String message) {
super(message);
}
public NoTablesException(String message, Throwable cause) {
super(message, cause);
}
public static NoTablesException of(String message) {
return new NoTablesException(message);
}
}