mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
15 lines
381 B
Java
15 lines
381 B
Java
![]() |
package androidx.media3.exoplayer.source;
|
||
|
|
||
|
import android.net.Uri;
|
||
|
import androidx.media3.common.ParserException;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public class UnrecognizedInputFormatException extends ParserException {
|
||
|
public final Uri uri;
|
||
|
|
||
|
public UnrecognizedInputFormatException(String str, Uri uri) {
|
||
|
super(str, null, false, 1);
|
||
|
this.uri = uri;
|
||
|
}
|
||
|
}
|