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

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

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 - 2024 Weber Informatics LLC | Privacy Policy