Étiqueté pour Loop en Java

//Labelled for loop in java which could be breaked in between using break/return or continue
labelledForLoop:for(int p=0 ; p<ipList.size(); p++){
try {
					//Some code......
				break labelledForLoop;
} catch (JSchException e1) {
	System.out.println(ExceptionUtils.getStackTrace(e1));
} finally{
	System.out.println("Method Ends here....");
}
}
Immortal_soul