- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
34 lines
862 B
Java
34 lines
862 B
Java
package com.facebook;
|
|
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class FacebookOperationCanceledException extends FacebookException {
|
|
public static final Companion Companion = new Companion(null);
|
|
public static final long serialVersionUID = 1;
|
|
|
|
public FacebookOperationCanceledException() {
|
|
}
|
|
|
|
public FacebookOperationCanceledException(String str) {
|
|
super(str);
|
|
}
|
|
|
|
public FacebookOperationCanceledException(String str, Throwable th) {
|
|
super(str, th);
|
|
}
|
|
|
|
public FacebookOperationCanceledException(Throwable th) {
|
|
super(th);
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
}
|
|
}
|