Replace RuntimeException with IOException
The RuntimeException was not explicitly declared and thus not caught at every call of this constructor. This change ensures that this possible exception is handled by the dedicated error handlers.
This commit is contained in:
parent
0f42c58409
commit
fd19e8e9f7
1 changed files with 1 additions and 1 deletions
|
|
@ -130,7 +130,7 @@ public class StoredFileHelper implements Serializable {
|
|||
final DocumentFile file = DocumentFile.fromSingleUri(context, path);
|
||||
|
||||
if (file == null) {
|
||||
throw new RuntimeException("SAF not available");
|
||||
throw new IOException("SAF not available");
|
||||
}
|
||||
|
||||
this.context = context;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue