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

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

The newest version!

package java.lang;

/**
 * Here for source compatibility
 */
public
class NoClassDefFoundError extends LinkageError {
    /**
     * Constructs a NoClassDefFoundError with no detail message.
     */
    public NoClassDefFoundError() {
  super();
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy