本文整理汇总了Java中com.androidnetworking.error.ANError.setErrorCode方法的典型用法代码示例。如果您正苦于以下问题:Java ANError.setErrorCode方法的具体用法?Java ANError.setErrorCode怎么用?Java ANError.setErrorCode使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.androidnetworking.error.ANError
的用法示例。
在下文中一共展示了ANError.setErrorCode方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getErrorForNetworkOnMainThreadOrConnection
import com.androidnetworking.error.ANError; //导入方法依赖的package包/类
public static ANError getErrorForNetworkOnMainThreadOrConnection(Exception e) {
ANError error = new ANError(e);
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB
&& e instanceof NetworkOnMainThreadException) {
error.setErrorDetail(ANConstants.NETWORK_ON_MAIN_THREAD_ERROR);
} else {
error.setErrorDetail(ANConstants.CONNECTION_ERROR);
}
error.setErrorCode(0);
return error;
}
示例2: deliverError
import com.androidnetworking.error.ANError; //导入方法依赖的package包/类
public synchronized void deliverError(ANError anError) {
try {
if (!isDelivered) {
if (isCancelled) {
anError.setCancellationMessageInError();
anError.setErrorCode(0);
}
deliverErrorResponse(anError);
}
isDelivered = true;
} catch (Exception e) {
e.printStackTrace();
}
}
示例3: deliverResponse
import com.androidnetworking.error.ANError; //导入方法依赖的package包/类
public void deliverResponse(final ANResponse response) {
try {
isDelivered = true;
if (!isCancelled) {
if (mExecutor != null) {
mExecutor.execute(new Runnable() {
@Override
public void run() {
deliverSuccessResponse(response);
}
});
} else {
Core.getInstance().getExecutorSupplier().forMainThreadTasks().execute(new Runnable() {
public void run() {
deliverSuccessResponse(response);
}
});
}
} else {
ANError anError = new ANError();
anError.setCancellationMessageInError();
anError.setErrorCode(0);
deliverErrorResponse(anError);
finish();
}
} catch (Exception e) {
e.printStackTrace();
}
}
示例4: deliverOkHttpResponse
import com.androidnetworking.error.ANError; //导入方法依赖的package包/类
public void deliverOkHttpResponse(final Response response) {
try {
isDelivered = true;
if (!isCancelled) {
if (mExecutor != null) {
mExecutor.execute(new Runnable() {
@Override
public void run() {
if (mOkHttpResponseListener != null) {
mOkHttpResponseListener.onResponse(response);
}
finish();
}
});
} else {
Core.getInstance().getExecutorSupplier().forMainThreadTasks().execute(new Runnable() {
public void run() {
if (mOkHttpResponseListener != null) {
mOkHttpResponseListener.onResponse(response);
}
finish();
}
});
}
} else {
ANError anError = new ANError();
anError.setCancellationMessageInError();
anError.setErrorCode(0);
if (mOkHttpResponseListener != null) {
mOkHttpResponseListener.onError(anError);
}
finish();
}
} catch (Exception e) {
e.printStackTrace();
}
}
示例5: getErrorForConnection
import com.androidnetworking.error.ANError; //导入方法依赖的package包/类
public static ANError getErrorForConnection(ANError error) {
error.setErrorDetail(ANConstants.CONNECTION_ERROR);
error.setErrorCode(0);
return error;
}
示例6: getErrorForServerResponse
import com.androidnetworking.error.ANError; //导入方法依赖的package包/类
public static ANError getErrorForServerResponse(ANError error, ANRequest request, int code) {
error = request.parseNetworkError(error);
error.setErrorCode(code);
error.setErrorDetail(ANConstants.RESPONSE_FROM_SERVER_ERROR);
return error;
}
示例7: getErrorForParse
import com.androidnetworking.error.ANError; //导入方法依赖的package包/类
public static ANError getErrorForParse(ANError error) {
error.setErrorCode(0);
error.setErrorDetail(ANConstants.PARSE_ERROR);
return error;
}