Skip to content
Snippets Groups Projects
Commit 6dcdf717 authored by Geoffrey Métais's avatar Geoffrey Métais Committed by Geoffrey Métais
Browse files

FileUtils: catch IllegalStateException

parent 53532e89
No related branches found
No related tags found
1 merge request!304Fixes for 3.2 release
Pipeline #10896 passed with stage
in 4 minutes and 4 seconds
......@@ -438,6 +438,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