Make append error explicit

This commit is contained in:
M66B 2019-02-20 09:30:44 +00:00
parent d5a2e09eae
commit 798e65cda5
1 changed files with 1 additions and 1 deletions

View File

@ -2219,7 +2219,7 @@ public class ServiceSynchronize extends LifecycleService {
}
if (uid < 0)
throw new MessageRemovedException("uid not found");
throw new IllegalArgumentException("uid not found");
return uid;
}