Files
rr3-apk/decompiled-community/sources/com/facebook/FacebookGraphResponseException.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
2026-02-18 15:48:36 -08:00

45 lines
1.5 KiB
Java

package com.facebook;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class FacebookGraphResponseException extends FacebookException {
private final GraphResponse graphResponse;
public final GraphResponse getGraphResponse() {
return this.graphResponse;
}
public FacebookGraphResponseException(GraphResponse graphResponse, String str) {
super(str);
this.graphResponse = graphResponse;
}
@Override // com.facebook.FacebookException, java.lang.Throwable
public String toString() {
GraphResponse graphResponse = this.graphResponse;
FacebookRequestError error = graphResponse == null ? null : graphResponse.getError();
StringBuilder sb = new StringBuilder();
sb.append("{FacebookGraphResponseException: ");
String message = getMessage();
if (message != null) {
sb.append(message);
sb.append(" ");
}
if (error != null) {
sb.append("httpResponseCode: ");
sb.append(error.getRequestStatusCode());
sb.append(", facebookErrorCode: ");
sb.append(error.getErrorCode());
sb.append(", facebookErrorType: ");
sb.append(error.getErrorType());
sb.append(", message: ");
sb.append(error.getErrorMessage());
sb.append("}");
}
String sb2 = sb.toString();
Intrinsics.checkNotNullExpressionValue(sb2, "errorStringBuilder.toString()");
return sb2;
}
}