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

ingenias.exception.VersionNotFound Maven / Gradle / Ivy

package ingenias.exception;

public class VersionNotFound extends Exception {

  public VersionNotFound() {
  }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy