Перенос с маленькими правками

This commit is contained in:
2025-03-30 18:08:41 +03:00
parent 0134f6d689
commit 4b7a924752
544 changed files with 45301 additions and 0 deletions
@@ -0,0 +1,15 @@
package com.ea.nimble;
/* loaded from: classes.dex */
public class HttpError extends Error {
public static final String ERROR_DOMAIN = "HttpError";
private static final long serialVersionUID = 1;
public HttpError(int i, String str, Throwable th) {
super(ERROR_DOMAIN, i, str, th);
}
public HttpError(int i, String str) {
super(ERROR_DOMAIN, i, str, null);
}
}