net.minidev.asm.ex.ConvertException 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;
public class ConvertException extends RuntimeException {
private static final long serialVersionUID = 1L;
public ConvertException() {
super();
}
public ConvertException(String message) {
super(message);
}
}