16 lines
384 B
Java
16 lines
384 B
Java
package okhttp3.repackaged.internal.http;
|
|
|
|
import java.io.IOException;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public final class RequestException extends Exception {
|
|
public RequestException(IOException iOException) {
|
|
super(iOException);
|
|
}
|
|
|
|
@Override // java.lang.Throwable
|
|
public final IOException getCause() {
|
|
return (IOException) super.getCause();
|
|
}
|
|
}
|