<Is there a "double" try and catch block?> Is ther...
# stackoverflow
u
Is there a "double" try and catch block? Is there a way to use a try and catch in kotlin like this try { // First try, if it throws an exception, try next try block } try { // Second try, if it throws an exception, too, go to exception block } catch (e: Exception) { // Handle exception } Thanks.