mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 09:32:27 -06:00
14 lines
381 B
Java
14 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;
|
|
}
|
|
}
|