Package cn.jpush.api.common.ResponseResult

Examples of cn.jpush.api.common.ResponseResult.ErrorObject


        }
        return null;
    }
   
  public int getErrorCode() {
      ErrorObject eo = getErrorObject();
      if (null != eo) {
          return eo.code;
      }
      return ERROR_CODE_OK;
  }
View Full Code Here


      }
      return ERROR_CODE_OK;
  }
 
  public String getErrorMessage() {
      ErrorObject eo = getErrorObject();
      if (null != eo) {
          return eo.message;
      }
      return ERROR_MESSAGE_NONE;
  }
View Full Code Here

TOP

Related Classes of cn.jpush.api.common.ResponseResult.ErrorObject

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.