mirror of
https://github.com/etesync/android
synced 2025-02-02 10:51:10 +00:00
Handle invalid account exception in the sync adapter service.
This commit is contained in:
parent
81b927e7fb
commit
c7d817dfe2
@ -140,7 +140,7 @@ public abstract class SyncAdapterService extends Service {
|
||||
dbHelper = new ServiceDB.OpenHelper(context);
|
||||
}
|
||||
|
||||
void run() throws Exceptions.HttpException, Exceptions.IntegrityException {
|
||||
void run() throws Exceptions.HttpException, Exceptions.IntegrityException, InvalidAccountException {
|
||||
try {
|
||||
@Cleanup SQLiteDatabase db = dbHelper.getWritableDatabase();
|
||||
|
||||
@ -178,10 +178,6 @@ public abstract class SyncAdapterService extends Service {
|
||||
} finally {
|
||||
db.endTransaction();
|
||||
}
|
||||
|
||||
} catch (InvalidAccountException e) {
|
||||
// FIXME: Do something
|
||||
e.printStackTrace();
|
||||
} finally {
|
||||
dbHelper.close();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user