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

com.mapbox.mapboxsdk.maps.renderer.egl.EGLConfigException Maven / Gradle / Ivy

There is a newer version: 9.2.1
Show newest version
package com.mapbox.mapboxsdk.maps.renderer.egl;

/**
 * Used for EGL configuration exceptions
 */
public class EGLConfigException extends RuntimeException {
  public EGLConfigException() {
  }

  public EGLConfigException(String message) {
    super(message);
  }

  public EGLConfigException(String message, Throwable cause) {
    super(message, cause);
  }

  public EGLConfigException(Throwable cause) {
    super(cause);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy