mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 09:32:27 -06:00
18 lines
439 B
Java
18 lines
439 B
Java
package androidx.media3.extractor.text;
|
|
|
|
import androidx.media3.decoder.DecoderException;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class SubtitleDecoderException extends DecoderException {
|
|
public SubtitleDecoderException(String str) {
|
|
super(str);
|
|
}
|
|
|
|
public SubtitleDecoderException(Throwable th) {
|
|
super(th);
|
|
}
|
|
|
|
public SubtitleDecoderException(String str, Throwable th) {
|
|
super(str, th);
|
|
}
|
|
}
|