Back to project page CommonLibs.
The source code is released under:
Apache License
If you think the Android project CommonLibs listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.alex.common; /*from ww w. j a v a2 s . c o m*/ /** * ????????????????????? * */ public class Err { /*-------------------------- * ??? *-------------------------*/ /*?????*/ public final static int NO_ERR = 0; //??? public final static int ERR_COMMON = -1; //???? public final static int ERR_PASSWD = -2; //??????????? public final static int ERR_NETWORK = -3; //???? public final static int ERR_DATABASE = -4; //??????? public final static int ERR_PHONE_EXIST = -5; //???????? public final static int ERR_NETWORK_TIMEOUT = -6; //???? public final static int ERR_USER_OFFLINE = -7; //?????? public final static int ERR_IO = -8; //IO????????????? public final static int ERR_FILE_NOT_FOUND = -9; //?????? public final static int ERR_USER_INVALID = -10; //???? public final static int ERR_NOT_LOGIN = -11; //??? }