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

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

The newest version!

package java.lang;

/**
 * Subclasses of LinkageError indicate that a class has 
 * some dependency on another class; however, the latter class has 
 * incompatibly changed after the compilation of the former class. 
 *
 *
 * @author  Frank Yellin
 * @version %I%, %G%
 * @since   JDK1.0
 */
//Here for source compatibility
//We may use this in gwt when hotswapping,
//to denote when the recompiled code cannot be bound to live instances.
public class LinkageError extends Error {
    /**
     * Constructs a LinkageError with no detail message. 
     */
    public LinkageError() {
  super();
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy