/*package*/ User(Response res, Element elem, Weibo weibo) throws WeiboException { super(res); init(elem, weibo); }
/*package*/ User(JSONObject json) throws WeiboException { super(); init(json); }
/*package*/ User(Response res, Weibo weibo) throws WeiboException { super(res); Element elem = res.asDocument().getDocumentElement(); init(elem, weibo); }