Filter exceptions

This commit is contained in:
M66B 2020-02-20 11:45:34 +01:00
parent b3f25a0ffe
commit 5e067f553a
1 changed files with 11 additions and 2 deletions

View File

@ -388,7 +388,9 @@ public class FragmentBase extends Fragment {
return;
}
if (ex instanceof IllegalArgumentException || ex instanceof FileNotFoundException)
if (ex instanceof IllegalArgumentException ||
ex instanceof FileNotFoundException ||
ex instanceof SecurityException)
ToastEx.makeText(getContext(), ex.getMessage(), Toast.LENGTH_LONG).show();
else
Log.unexpectedError(getParentFragmentManager(), ex);
@ -407,6 +409,11 @@ public class FragmentBase extends Fragment {
long id = args.getLong("id");
Uri uri = args.getParcelable("uri");
if (!"content".equals(uri.getScheme())) {
Log.w("Save attachment uri=" + uri);
throw new IllegalArgumentException(context.getString(R.string.title_no_stream));
}
DB db = DB.getInstance(context);
DocumentFile tree = DocumentFile.fromTreeUri(context, uri);
List<EntityAttachment> attachments = db.attachment().getAttachments(id);
@ -470,7 +477,9 @@ public class FragmentBase extends Fragment {
return;
}
if (ex instanceof FileNotFoundException)
if (ex instanceof IllegalArgumentException ||
ex instanceof FileNotFoundException ||
ex instanceof SecurityException)
ToastEx.makeText(getContext(), ex.getMessage(), Toast.LENGTH_LONG).show();
else
Log.unexpectedError(getParentFragmentManager(), ex);