All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.stupdit1t.excel.common.PoiException Maven / Gradle / Ivy

There is a newer version: 3.3.0
Show newest version
package com.github.stupdit1t.excel.common;

/**
 * 异常定义
 *
 * @author 625
 */
public class PoiException extends RuntimeException {

    public PoiException(String message) {
        super(message);
    }

    public static PoiException error(String message) {
        return new PoiException(message);
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy