public static Person getByEmail(ZulipApp app, String email) { try { return getByEmail(app.getDatabaseHelper().getDao(Person.class), email); } catch (SQLException e) { ZLog.logException(e); } return null; }