I want to exit inner loop and to pass outer loop with +1.
Example:
public class MyClass {
    public static void main(String args[]) {
        for(int i=0; i<10; i++){
            System.out.println("Outer loop : "+ i);
            for (int j=0; j<10; j ++){
                if(j == 3){
                    System.out.println("<-- Break Inner loop--> on j == "+j);
                    break; 
                }               
            }
            System.out.println("This code is executing but I do not want if break executes");
        }
    }
}
 
    