mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 17:12:31 -06:00
23 lines
738 B
Java
23 lines
738 B
Java
package androidx.media3.exoplayer.drm;
|
|
|
|
import android.net.Uri;
|
|
import androidx.media3.datasource.DataSpec;
|
|
import java.io.IOException;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class MediaDrmCallbackException extends IOException {
|
|
public final long bytesLoaded;
|
|
public final DataSpec dataSpec;
|
|
public final Map<String, List<String>> responseHeaders;
|
|
public final Uri uriAfterRedirects;
|
|
|
|
public MediaDrmCallbackException(DataSpec dataSpec, Uri uri, Map<String, List<String>> map, long j, Throwable th) {
|
|
super(th);
|
|
this.dataSpec = dataSpec;
|
|
this.uriAfterRedirects = uri;
|
|
this.responseHeaders = map;
|
|
this.bytesLoaded = j;
|
|
}
|
|
}
|