net.minidev.asm.ex.NoSuchFieldException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of accessors-smart Show documentation
Show all versions of accessors-smart Show documentation
Java reflect give poor performance on getter setter an constructor calls, accessors-smart use ASM to speed up those calls.
package net.minidev.asm.ex;
/**
* Same exception as java.lang.NoSuchFieldException but extends RuntimException
*
* @author uriel
*
*/
public class NoSuchFieldException extends RuntimeException {
private static final long serialVersionUID = 1L;
public NoSuchFieldException() {
super();
}
public NoSuchFieldException(String message) {
super(message);
}
}