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

org.reflections.ReflectionsException Maven / Gradle / Ivy

The newest version!
/*
 * User: ophir
 * Date: Mar 28, 2009
 * Time: 12:52:22 AM
 */
package org.reflections;

public class ReflectionsException extends RuntimeException {

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

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

  public ReflectionsException(Throwable cause) {
    super(cause);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy