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

spinjar.com.minidev.asm.ex.NoSuchFieldException Maven / Gradle / Ivy

There is a newer version: 1.23.0
Show 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;

	public NoSuchFieldException() {
		super();
	}

	public NoSuchFieldException(String message) {
		super(message);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy