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

14 lines
391 B
Java
Raw Normal View History

2021-07-24 02:37:17 +00:00
package androidx.core.os;
import androidx.annotation.Nullable;
2021-09-21 07:33:49 +00:00
import androidx.core.util.ObjectsCompat;
2021-07-24 02:37:17 +00:00
public class OperationCanceledException extends RuntimeException {
public OperationCanceledException() {
this(null);
}
public OperationCanceledException(@Nullable String str) {
2021-09-21 07:33:49 +00:00
super(ObjectsCompat.toString(str, "The operation has been canceled."));
2021-07-24 02:37:17 +00:00
}
}