Перенос с маленькими правками
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user