Handle invalid account exception in the sync adapter service.

pull/2/head
Tom Hacohen 7 years ago
parent 81b927e7fb
commit c7d817dfe2

@ -140,7 +140,7 @@ public abstract class SyncAdapterService extends Service {
dbHelper = new ServiceDB.OpenHelper(context); dbHelper = new ServiceDB.OpenHelper(context);
} }
void run() throws Exceptions.HttpException, Exceptions.IntegrityException { void run() throws Exceptions.HttpException, Exceptions.IntegrityException, InvalidAccountException {
try { try {
@Cleanup SQLiteDatabase db = dbHelper.getWritableDatabase(); @Cleanup SQLiteDatabase db = dbHelper.getWritableDatabase();
@ -178,10 +178,6 @@ public abstract class SyncAdapterService extends Service {
} finally { } finally {
db.endTransaction(); db.endTransaction();
} }
} catch (InvalidAccountException e) {
// FIXME: Do something
e.printStackTrace();
} finally { } finally {
dbHelper.close(); dbHelper.close();
} }

Loading…
Cancel
Save