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

com.alibaba.excel.exception.ExcelCommonException Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
package com.alibaba.excel.exception;

/**
 *
 * @author Jiaju Zhuang
 */
public class ExcelCommonException extends RuntimeException {

    public ExcelCommonException() {}

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

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

    public ExcelCommonException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy