13 lines
325 B
Java
13 lines
325 B
Java
package androidx.core.os;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class OperationCanceledException extends RuntimeException {
|
|
public OperationCanceledException() {
|
|
this(null);
|
|
}
|
|
|
|
public OperationCanceledException(String str) {
|
|
super(str == null ? "The operation has been canceled." : str);
|
|
}
|
|
}
|