what-the-bank/sources/okhttp3/internal/http2/StreamResetException.java

17 lines
502 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package okhttp3.internal.http2;
import java.io.IOException;
import o.C14957gcv;
/* loaded from: classes.dex */
public final class StreamResetException extends IOException {
public final ErrorCode errorCode;
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public StreamResetException(ErrorCode errorCode) {
super(C14957gcv.c("stream was reset: ", errorCode));
C14957gcv.e(errorCode, "");
this.errorCode = errorCode;
}
}