16 lines
403 B
Java
16 lines
403 B
Java
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);
|
|
}
|
|
}
|