Salesforce Apex Break loop

Class{
    Boolean breakhere = false;
    for(....1st loop){
    for(.... 2nd loop){
        // I have some condition that should break out of the 2nd for loop and continue with the 1st for loop
       if(...){
           isPresent = true; 
           break;
      }
   }//End of 2nd for loop
}// end of first for loop
}