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

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

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

/**
 * A parent class for all the excel-streaming-reader specific Runtime Exceptions.
 *
 * @since 4.3.0
 */
public class ExcelRuntimeException extends RuntimeException {

  protected ExcelRuntimeException() {
    super();
  }

  protected ExcelRuntimeException(String msg) {
    super(msg);
  }

  protected ExcelRuntimeException(Exception e) {
    super(e);
  }

  protected ExcelRuntimeException(String msg, Exception e) {
    super(msg, e);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy