* @throws Exception
*/
@Override
public Response updateStatus(final String msg) throws Exception {
if (msg == null || msg.trim().length() == 0) {
throw new ServerDataException("Status cannot be blank");
}
String url = String.format(UPDATE_STATUS_URL,
accessToken.getAttribute("xoauth_yahoo_guid"));
LOG.info("Updating status " + msg + " on " + url);
String msgBody = "{\"status\":{\"message\":\"" + msg + "\"}}";