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

ingenias.exception.CannotLoad Maven / Gradle / Ivy

There is a newer version: 1.7
Show newest version
package ingenias.exception;

public class CannotLoad extends Exception {

  public CannotLoad() {
  }

  public CannotLoad(String message) {
    super(message);
  }

  public CannotLoad(String message, Throwable cause) {
    super(message, cause);
  }

  public CannotLoad(Throwable cause) {
    super(cause);
  }
  public static void main(String[] args) {
    CannotLoad cannotLoad1 = new CannotLoad();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy