Throw expection

This commit is contained in:
Edward Capriolo
2015-01-09 12:13:41 -05:00
parent f9d12d4f1a
commit 961d93d13b

View File

@ -131,8 +131,7 @@ public abstract class GossipMember {
jsonObject.put(JSON_HEARTBEAT, _heartbeat); jsonObject.put(JSON_HEARTBEAT, _heartbeat);
return jsonObject; return jsonObject;
} catch (JSONException e) { } catch (JSONException e) {
e.printStackTrace(); throw new RuntimeException(e);
} }
return null;
} }
} }