mirror of
https://github.com/github/semantic.git
synced 2024-12-19 12:51:52 +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...");
|
||
|
}
|
||
|
}
|