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

com.google.gwt.emul.java.lang.NoSuchFieldException Maven / Gradle / Ivy

The newest version!

package java.lang;

/**
 * Thrown if an application tries to access a method of a 
 * class (either static or instance), and that class does not have a 
 * definition of that method. 
 */
public
class NoSuchFieldException extends Exception {
  private static final long serialVersionUID = -6143714805279938260L;
 
  /**
     * Constructs a NoSuchFieldException with no detail message.
     */
    public NoSuchFieldException() {
  super();
    }

    /**
     * Constructs a NoSuchFieldException with the 
     * specified detail message. 
     *
     * @param   s   the detail message.
     */
    public NoSuchFieldException(String s) {
  super(s);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy