All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.minidev.asm.ex.NoSuchFieldException Maven / Gradle / Ivy

Go to download

Java reflect give poor performance on getter setter an constructor calls, accessors-smart use ASM to speed up those calls.

The newest version!
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;

	/**
	 * default constructor
	 */
	public NoSuchFieldException() {
		super();
	}

	/**
	 * constuctor from message.
	 * @param message the detail message. The detail message is saved for 
	 *                later retrieval by the Throwable.getMessage() method.
	 */
	public NoSuchFieldException(String message) {
		super(message);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy