discord-jadx/app/src/main/java/com/google/android/exoplayer2/ParserException.java

20 lines
381 B
Java

package com.google.android.exoplayer2;
import java.io.IOException;
public class ParserException extends IOException {
public ParserException() {
}
public ParserException(String str) {
super(str);
}
public ParserException(String str, Throwable th) {
super(str, th);
}
public ParserException(Throwable th) {
super(th);
}
}