mirror of
https://github.com/github/semantic.git
synced 2024-12-01 00:33:59 +03:00
9 lines
196 B
Java
9 lines
196 B
Java
class Example2{
|
|
public static void main(String args[]){
|
|
try{
|
|
int data = 50;
|
|
} catch (ArithmeticException e){System.out.println(e);}
|
|
System.out.println("rest of the code...");
|
|
}
|
|
}
|