- 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
39 lines
1.9 KiB
Java
39 lines
1.9 KiB
Java
package com.facebook;
|
|
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class FacebookServiceException extends FacebookException {
|
|
public static final Companion Companion = new Companion(null);
|
|
private static final long serialVersionUID = 1;
|
|
private final FacebookRequestError requestError;
|
|
|
|
public final FacebookRequestError getRequestError() {
|
|
return this.requestError;
|
|
}
|
|
|
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
|
public FacebookServiceException(FacebookRequestError requestError, String str) {
|
|
super(str);
|
|
Intrinsics.checkNotNullParameter(requestError, "requestError");
|
|
this.requestError = requestError;
|
|
}
|
|
|
|
@Override // com.facebook.FacebookException, java.lang.Throwable
|
|
public String toString() {
|
|
String str = "{FacebookServiceException: httpResponseCode: " + this.requestError.getRequestStatusCode() + ", facebookErrorCode: " + this.requestError.getErrorCode() + ", facebookErrorType: " + this.requestError.getErrorType() + ", message: " + this.requestError.getErrorMessage() + "}";
|
|
Intrinsics.checkNotNullExpressionValue(str, "StringBuilder()\n .append(\"{FacebookServiceException: \")\n .append(\"httpResponseCode: \")\n .append(requestError.requestStatusCode)\n .append(\", facebookErrorCode: \")\n .append(requestError.errorCode)\n .append(\", facebookErrorType: \")\n .append(requestError.errorType)\n .append(\", message: \")\n .append(requestError.errorMessage)\n .append(\"}\")\n .toString()");
|
|
return str;
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
}
|
|
}
|