- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
14 lines
340 B
Java
14 lines
340 B
Java
package com.mbridge.msdk.playercommon.exoplayer2.upstream;
|
|
|
|
import java.io.IOException;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public final class DataSourceException extends IOException {
|
|
public static final int POSITION_OUT_OF_RANGE = 0;
|
|
public final int reason;
|
|
|
|
public DataSourceException(int i) {
|
|
this.reason = i;
|
|
}
|
|
}
|