mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 18:12:31 -06:00
16 lines
343 B
Java
16 lines
343 B
Java
package androidx.media3.decoder;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class DecoderException extends Exception {
|
|
public DecoderException(String str) {
|
|
super(str);
|
|
}
|
|
|
|
public DecoderException(Throwable th) {
|
|
super(th);
|
|
}
|
|
|
|
public DecoderException(String str, Throwable th) {
|
|
super(str, th);
|
|
}
|
|
}
|