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

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

The newest version!
package java.lang;
/**
 * Thrown when gwt tries to instantiate a class from incompatible foreign-compiled source code 
 * 
 * @author James X. Nelson ([email protected], @james)
 *
 */
public
class ClassFormatError extends LinkageError {
    /**
     * Constructs a ClassFormatError with no detail message. 
     */
    public ClassFormatError() {
  super();
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy