- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
35 lines
1012 B
Java
35 lines
1012 B
Java
package com.ea.nimble;
|
|
|
|
import com.ironsource.mediationsdk.utils.IronSourceConstants;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class SynergyIdManagerError extends Error {
|
|
public static final String ERROR_DOMAIN = "NimbleSynergyIdManager";
|
|
private static final long serialVersionUID = 1;
|
|
|
|
public enum Code {
|
|
AUTHENTICATOR_CONFLICT(5000),
|
|
UNEXPECTED_LOGIN_STATE(IronSourceConstants.errorCode_biddingDataException),
|
|
INVALID_ID(IronSourceConstants.errorCode_isReadyException),
|
|
MISSING_AUTHENTICATOR(IronSourceConstants.errorCode_loadInProgress);
|
|
|
|
private int m_value;
|
|
|
|
public int intValue() {
|
|
return this.m_value;
|
|
}
|
|
|
|
Code(int i) {
|
|
this.m_value = i;
|
|
}
|
|
}
|
|
|
|
public SynergyIdManagerError(Code code, String str, Throwable th) {
|
|
super(ERROR_DOMAIN, code.intValue(), str, th);
|
|
}
|
|
|
|
public SynergyIdManagerError(Code code, String str) {
|
|
super(ERROR_DOMAIN, code.intValue(), str);
|
|
}
|
|
}
|