com.goikosoft.reflection.NonExistentMethodException 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;
public class NonExistentMethodException extends MethodException{
private static final long serialVersionUID = -7254056079953985585L;
public NonExistentMethodException() {
super();
}
public NonExistentMethodException(String nombreMetodo, Class> clase, Throwable cause) {
super(nombreMetodo, clase, cause);
}
public NonExistentMethodException(String message, String nombreMetodo, Class> clase, Throwable cause) {
super(message, nombreMetodo, clase, cause);
}
public NonExistentMethodException(String message, String nombreMetodo, Class> clase) {
super(message, nombreMetodo, clase);
}
public NonExistentMethodException(String message, Throwable cause) {
super(message, cause);
}
public NonExistentMethodException(String message) {
super(message);
}
public NonExistentMethodException(Throwable cause) {
super(cause);
}
}