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

org.reflections.ReflectionsException Maven / Gradle / Ivy

There is a newer version: 1.5.7
Show 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 - 2024 Weber Informatics LLC | Privacy Policy