- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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);
|
|
}
|
|
}
|