mercredi 22 avril 2020

How to end try- catch in andoid?

I wanna jump out of try block, How do i do it?

try
{
//some code

if()
{
// I want to break/ jump out from try block here if condition is true
}
else
{
}

//but it continues here
 // More Code
}
catch()
{
}

How Do i jump out of it?

Any help would be appreciated.

Aucun commentaire:

Enregistrer un commentaire