com.github.salilvnair.excelprocessor.v2.exception.ExcelSheetWriterException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excelprocessor Show documentation
Show all versions of excelprocessor Show documentation
POI based libarary to convert excel to java , java to excel and more
The newest version!
package com.github.salilvnair.excelprocessor.v2.exception;
/**
* @author Salil V Nair
*/
public class ExcelSheetWriterException extends RuntimeException {
public ExcelSheetWriterException(String string) {
super(string);
}
public ExcelSheetWriterException(Throwable e) {
super(e);
}
}