discord-jadx/app/src/main/java/androidx/core/os/OperationCanceledException....

14 lines
431 B
Java

package androidx.core.os;
import androidx.annotation.Nullable;
public class OperationCanceledException extends RuntimeException {
public OperationCanceledException() {
this(null);
}
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public OperationCanceledException(@Nullable String str) {
super(str == null ? "The operation has been canceled." : str);
}
}