-
- All Implemented Interfaces:
-
java.io.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.
-
-
Field Summary
Fields Modifier and Type Field Description public final int
errorCode
public final String
errorDescription
-
Constructor Summary
Constructors Constructor Description OpenGLException(String message)
Constructs a new Open GL Exception with the given message. OpenGLException(String message, int errorCode)
Constructs a new Open GL Exception with the given message and error code.
-
Method Summary
Modifier and Type Method Description -
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Constructor Detail
-
OpenGLException
OpenGLException(String message)
Constructs a new Open GL Exception with the given message.- Parameters:
message
- the error message.
-
OpenGLException
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 eglGetError method.
-
-
-
-