: , , " ".
:
, , , ( ), . , , , . , . , :
, , 3() method2() method2() method1(). ,
1) 3(), 3() .
2) i.e 2().
3) 2, , 1(), .

:
class ExceptionPropagation{
void method3(){
int result = 100 / 0;
}
void method2(){
method3();
}
void method1(){
try{
method2();
} catch(Exception e){
System.out.println("Exception is handled here");
}
}
public static void main(String args[]){
ExceptionPropagation obj=new ExceptionPropagation();
obj.method1();
System.out.println("Continue with Normal Flow...");
}
}
:
...
.
[1] http://docs.oracle.com/javase/tutorial/essential/exceptions/definition.html
[2] http://www.c4learn.com/java/java-exception-propagation/