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

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

The newest version!
package java.lang;

/**
 * Present for JRE support where users may want to catch this when running in
 * JVMs
 */
public class UnsatisfiedLinkError extends LinkageError {
  public UnsatisfiedLinkError() {
    super();
  }

  public UnsatisfiedLinkError(String s) {
    super(s);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy