Sometimes you need to skip execution of the part of the a method under sertain certain non-critical error conditions. You can you use exceptions for that, but that exceptions generally are not recomender to be used recommended in normal application logic, only for abnormal situations.
So I do a trick like this:
do
{
bool isGood = true;
.... some code
if(!isGood)
break;
.... some more code
if(!isGood)
break;
.... some more code
} while(false);
..... some other code, which has to be executed.
I use a "fake" loop which will run once, and I can abort it by break or continue.
Some of my colleagues did not like that, and they call called it "bad practice". I personally find that approach preatty pretty slick. But what do you think?
