📅  最后修改于: 2022-03-11 14:55:22.859000             🧑  作者: Mango
We shouldn’t declare any code between try and catch block.
Catch block should immediately start after try block.
try{
//code
}
System.out.println(“one line of code”); // illegal
catch(Exception e){
//
}