private boolean handleDeleteStatusElement(final JSONObject el) throws TweetParseException, HandlerException {
if (null == deleteHandler) {
LOGGER.info("skipping 'delete' status element");
return true;
} else {
Tweet status;
try {
status = new Tweet(el
.getJSONObject(TwitterAPI.Field.DELETE.toString())
.getJSONObject(TwitterAPI.Field.STATUS.toString())
.getString(TwitterAPI.Field.ID.toString()));
} catch (JSONException e) {
throw new TweetParseException(e);