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

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

package com.alibaba.excel.exception;

/**
 * Throw the exception when you need to stop
 * This exception will stop the entire excel parsing. If you only want to stop the parsing of a certain sheet, please
 * use ExcelAnalysisStopSheetException.
 *
 * @author Jiaju Zhuang
 * @see ExcelAnalysisStopException
 */
public class ExcelAnalysisStopException extends ExcelAnalysisException {

    public ExcelAnalysisStopException() {}

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy