Rabbit-R1/android (non root)/java/sources/com/google/android/exoplayer2/text/SubtitleDecoderException.java
2024-05-21 17:08:36 -04:00

18 lines
457 B
Java

package com.google.android.exoplayer2.text;
import com.google.android.exoplayer2.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);
}
}