18 lines
338 B
Java
18 lines
338 B
Java
package com.ubt.jimu.base.http;
|
|
|
|
import retrofit2.HttpException;
|
|
import retrofit2.Response;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class ApiException extends HttpException {
|
|
private int code;
|
|
|
|
public ApiException(Response<?> response) {
|
|
super(response);
|
|
}
|
|
|
|
public int getCode() {
|
|
return this.code;
|
|
}
|
|
}
|