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

com.hn.poi.ExcelException Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.hn.poi;

/**
 * 描述:
 * excel解析异常
 * @author fei
 */
public class ExcelException extends RuntimeException {
    public ExcelException() {
    }
    public ExcelException(String message) {
        super(message);
    }

    public ExcelException(String message, Throwable cause) {
        super(message, cause);
    }

    public static ExcelException exception(String message){
        return new ExcelException(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy