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

com.github.pjfanning.xlsx.exceptions.MissingSheetException Maven / Gradle / Ivy

The newest version!
package com.github.pjfanning.xlsx.exceptions;

public class MissingSheetException extends ExcelRuntimeException {

  public MissingSheetException() {
    super();
  }

  public MissingSheetException(String msg) {
    super(msg);
  }

  public MissingSheetException(Exception e) {
    super(e);
  }

  public MissingSheetException(String msg, Exception e) {
    super(msg, e);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy