org.javafunk.excelparser.exception.ExcelParsingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel-parser Show documentation
Show all versions of excel-parser Show documentation
Annotations for Excel document parsing.
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