org.reflections.ReflectionsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swagger-all Show documentation
Show all versions of swagger-all Show documentation
swagger-all is a rebundled verison of Swagger as one OSGi bundle.
/*
* 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);
}
}