- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
30 lines
795 B
Java
30 lines
795 B
Java
package com.mbridge.msdk.dycreator.b;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public enum b {
|
|
NOT_FOUND_VIEWOPTION(-101, "ViewOption is null"),
|
|
NOT_FOUND_CONTEXT(-102, "context is null"),
|
|
FILE_CREATE_VIEW_FILE(-103, "file create view is null"),
|
|
CAMPAIGNEX_IS_NULL(-104, "Campaign size only one"),
|
|
NOT_FOUND_CAMPAIGN(-105, "campaign is null"),
|
|
NOT_FOUND_DYNAMIC_FILE(-106, "dynamic file is not exits"),
|
|
BIND_DATA_FILE_OR_DIR(-107, "data file or file dir is not exits "),
|
|
NOT_FOUND_DYNAMIC_OPTION(-108, "dynamic_option is not exits");
|
|
|
|
private int i;
|
|
private String j;
|
|
|
|
public final int a() {
|
|
return this.i;
|
|
}
|
|
|
|
public final String b() {
|
|
return this.j;
|
|
}
|
|
|
|
b(int i, String str) {
|
|
this.i = i;
|
|
this.j = str;
|
|
}
|
|
}
|