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

org.javafunk.excelparser.exception.ExcelParsingException Maven / Gradle / Ivy

The newest version!
package org.javafunk.excelparser.exception;

public class ExcelParsingException extends RuntimeException {

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

    public ExcelParsingException(String message, Exception exception) {
        super(message, exception);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy