24 lines
622 B
Java
24 lines
622 B
Java
|
package o;
|
||
|
|
||
|
import com.scb.phone.domain.errors.RetrofitException;
|
||
|
import java.io.IOException;
|
||
|
import okhttp3.Interceptor;
|
||
|
import okhttp3.Request;
|
||
|
import okhttp3.Response;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public final class xSU implements Interceptor {
|
||
|
@InterfaceC13391fZD
|
||
|
public xSU() {
|
||
|
}
|
||
|
|
||
|
@Override // okhttp3.Interceptor
|
||
|
public final Response intercept(Interceptor.Chain chain) throws IOException {
|
||
|
Request request = chain.request();
|
||
|
RetrofitException.d(request);
|
||
|
Response proceed = chain.proceed(request);
|
||
|
RetrofitException.c(proceed);
|
||
|
return proceed;
|
||
|
}
|
||
|
}
|