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

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

There is a newer version: 5.0.3
Show newest version
package com.github.pjfanning.xlsx.exceptions;

public class OpenException extends ExcelRuntimeException {

  public OpenException() {
    super();
  }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy