mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
14 lines
434 B
Java
14 lines
434 B
Java
package com.google.android.exoplayer2;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class IllegalSeekPositionException extends IllegalStateException {
|
|
public final long positionMs;
|
|
public final Timeline timeline;
|
|
public final int windowIndex;
|
|
|
|
public IllegalSeekPositionException(Timeline timeline, int i, long j) {
|
|
this.timeline = timeline;
|
|
this.windowIndex = i;
|
|
this.positionMs = j;
|
|
}
|
|
}
|