Back to project page android_sdk.
The source code is released under:
GNU Lesser General Public License
If you think the Android project android_sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (C) 2013 Spunk Media Pvt Ltd (www.qubecell.com) *//*from w w w . ja va 2 s .co m*/ package com.qubecell.constants; /** * The NetworkResponseCode class has network response error code information. * @author Eninov * */ public class NetworkResponseCode { public static final int NET_RESP_SUCCESS = 1; public static final int NET_RESP_FAILURE = -1000; public static final int NET_REQ_TIMEOUT = NET_RESP_FAILURE -1; public static final int INVALID_URL = NET_RESP_FAILURE -2; public static final int NET_EXCEPTION = NET_RESP_FAILURE -3; public static final int FILE_NOT_FOUND = NET_RESP_FAILURE -4; }