Class OpenGLException

All Implemented Interfaces:
Serializable

public class OpenGLException extends RuntimeException
Open GL Exception is an unchecked exception that will be thrown when the player encounters Open GL errors that prevent 360 degree video playback.
See Also:
  • Field Details

    • errorCode

      public final int errorCode
      The Open GL error code returned by EGL14.eglGetError() method.
    • errorDescription

      public final String errorDescription
      The description about the open GL error returned by GLUtils.getEGLErrorString(int) method.
  • Constructor Details

    • OpenGLException

      public OpenGLException(String message)
      Constructs a new Open GL Exception with the given message.
      Parameters:
      message - the error message.
      See Also:
    • OpenGLException

      public OpenGLException(String message, int errorCode)
      Constructs a new Open GL Exception with the given message and error code.
      Parameters:
      message - the error message.
      errorCode - the Open GL error code returned by EGL14.eglGetError() method.