Skip to content
Snippets Groups Projects
Commit 61a18a93 authored by Geoffrey Métais's avatar Geoffrey Métais
Browse files

FileUtils: catch IllegalStateException

(cherry picked from commit 6dcdf717)
parent 1842d8e0
No related branches found
No related tags found
No related merge requests found
......@@ -443,6 +443,9 @@ object FileUtils {
} catch (e: IllegalArgumentException) {
Log.e(TAG, "Couldn't understand the intent")
return null
} catch (e: IllegalStateException) {
Log.e(TAG, "Couldn't understand the intent")
return null
} catch (e: NullPointerException) {
Log.e(TAG, "Couldn't understand the intent")
return null
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment