com.monitorjbl.xlsx.exceptions.MissingSheetException Maven / Gradle / Ivy
package com.monitorjbl.xlsx.exceptions;
public class MissingSheetException extends RuntimeException {
public MissingSheetException() {
super();
}
public MissingSheetException(String msg) {
super(msg);
}
public MissingSheetException(Exception e) {
super(e);
}
public MissingSheetException(String msg, Exception e) {
super(msg, e);
}
}