- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
14 lines
343 B
Java
14 lines
343 B
Java
package okhttp3.internal.http2;
|
|
|
|
import java.io.IOException;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public final class StreamResetException extends IOException {
|
|
public final ErrorCode errorCode;
|
|
|
|
public StreamResetException(ErrorCode errorCode) {
|
|
super("stream was reset: " + errorCode);
|
|
this.errorCode = errorCode;
|
|
}
|
|
}
|