Class MediaDrmCallbackException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- com.google.android.exoplayer2.drm.MediaDrmCallbackException
-
- All Implemented Interfaces:
Serializable
public final class MediaDrmCallbackException extends IOException
Thrown when an error occurs while executing a DRMkeyorprovisioningrequest.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description longbytesLoadedThe number of bytes obtained from the server.DataSpecdataSpecTheDataSpecassociated with the request.Map<String,List<String>>responseHeadersThe HTTP request headers included in the response.UriuriAfterRedirectsTheUriafter redirections, ordataSpec.uriif no redirection occurred.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
uriAfterRedirects
public final Uri uriAfterRedirects
TheUriafter redirections, ordataSpec.uriif no redirection occurred.
-
responseHeaders
public final Map<String,List<String>> responseHeaders
The HTTP request headers included in the response.
-
bytesLoaded
public final long bytesLoaded
The number of bytes obtained from the server.
-
-
Constructor Detail
-
MediaDrmCallbackException
public MediaDrmCallbackException(DataSpec dataSpec, Uri uriAfterRedirects, Map<String,List<String>> responseHeaders, long bytesLoaded, Throwable cause)
Creates a new instance with the given values.- Parameters:
dataSpec- SeedataSpec.uriAfterRedirects- SeeuriAfterRedirects.responseHeaders- SeeresponseHeaders.bytesLoaded- SeebytesLoaded.cause- The cause of the exception.
-
-