what-the-bank/sources/com/huawei/hms/common/api/UnsupportedApiCallException...

22 lines
572 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.huawei.hms.common.api;
import com.huawei.hms.common.Feature;
@Deprecated
/* loaded from: classes2.dex */
public final class UnsupportedApiCallException extends UnsupportedOperationException {
private final Feature feature;
public UnsupportedApiCallException(Feature feature) {
this.feature = feature;
}
@Override // java.lang.Throwable
public final String getMessage() {
StringBuilder sb = new StringBuilder();
sb.append(this.feature);
sb.append(" is unsupported");
return sb.toString();
}
}