mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-30 11:02:31 -06:00
17 lines
343 B
Java
17 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);
|
||
|
}
|
||
|
}
|