Initial commit
This commit is contained in:
13
sources/okhttp3/internal/http2/StreamResetException.java
Normal file
13
sources/okhttp3/internal/http2/StreamResetException.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package okhttp3.internal.http2;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public final class StreamResetException extends IOException {
|
||||
public final ErrorCode errorCode;
|
||||
|
||||
public StreamResetException(ErrorCode errorCode) {
|
||||
super("stream was reset: " + errorCode);
|
||||
this.errorCode = errorCode;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user