com.goikosoft.reflection.AmbiguousMethodException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reflection-utils Show documentation
Show all versions of reflection-utils Show documentation
Reflection utils. Simple envelope for reflection simplification
The newest version!
package com.goikosoft.reflection;
import java.lang.reflect.Method;
public class AmbiguousMethodException extends MethodException{
private static final long serialVersionUID = -4748538429355113567L;
public AmbiguousMethodException() {
super();
}
public AmbiguousMethodException(Method method, Class> clase, Throwable cause) {
super(method, clase, cause);
}
public AmbiguousMethodException(Method method) {
super(method);
}
public AmbiguousMethodException(String nombreMetodo, Class> clase, Throwable cause) {
super(nombreMetodo, clase, cause);
}
public AmbiguousMethodException(String message, Method method, Class> clase, Throwable cause) {
super(message, method, clase, cause);
}
public AmbiguousMethodException(String message, Method method, Class> clase) {
super(message, method, clase);
}
public AmbiguousMethodException(String message, String nombreMetodo, Class> clase, Throwable cause) {
super(message, nombreMetodo, clase, cause);
}
public AmbiguousMethodException(String message, String nombreMetodo, Class> clase) {
super(message, nombreMetodo, clase);
}
public AmbiguousMethodException(String message, Throwable cause) {
super(message, cause);
}
public AmbiguousMethodException(String message) {
super(message);
}
public AmbiguousMethodException(Throwable cause) {
super(cause);
}
}