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

16 lines
357 B
Java

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