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

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

package com.monitorjbl.xlsx.exceptions;

public class NotSupportedException extends RuntimeException {

  public NotSupportedException() {
    super();
  }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy