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

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

The newest version!

package java.lang;

/**
 * Thrown when an incompatible class change has occurred to some class 
 * definition. The definition of some class, on which the currently 
 * executing method depends, has since changed. 
 *
 * @author  unascribed
 * @version %I%, %G%
 * @since   JDK1.0
 */
public
class IncompatibleClassChangeError extends LinkageError {
    /**
     * Constructs an IncompatibleClassChangeError with no 
     * detail message. 
     */
    public IncompatibleClassChangeError () {
  super();
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy