Files
rr3-apk/decompiled/sources/com/facebook/FacebookServiceException.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

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() {
}
}
}