Java 25 - exceptional handling

PHOTO EMBED

Sun Nov 26 2023 17:10:20 GMT+0000 (Coordinated Universal Time)

Saved by @Java

class Lab25 
{ 
public static void main(String[] args) 
{ 
try 
{ 
int a=17/0; 
} 
catch(Exception x) 
{ 
System.out.println(x); 
} 
System.out.println("rest of the code"); 
} 
}
content_copyCOPY