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

com.monitorjbl.xlsx.exceptions.OpenException Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package com.monitorjbl.xlsx.exceptions;

public class OpenException extends RuntimeException {

  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 - 2024 Weber Informatics LLC | Privacy Policy