com.goikosoft.reflection.ForbiddenFieldException 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 ForbiddenFieldException extends PropertyException {
private static final long serialVersionUID = -6267116416760585082L;
public ForbiddenFieldException() {
super();
}
public ForbiddenFieldException(String nombreProperty, Class> clase, Throwable cause) {
super(nombreProperty, clase, cause);
}
public ForbiddenFieldException(String message, String nombreProperty, Class> clase, Throwable cause) {
super(message, nombreProperty, clase, cause);
}
public ForbiddenFieldException(String message, String nombreProperty, Class> clase) {
super(message, nombreProperty, clase);
}
public ForbiddenFieldException(String message, Throwable cause) {
super(message, cause);
}
public ForbiddenFieldException(String message) {
super(message);
}
public ForbiddenFieldException(Throwable cause) {
super(cause);
}
}