.
finally 를 위한 Help를 보니까
If an exception is raised but not handled in the finally clause, that exception
is propagated out of the try...finally statement, and any exception already raised
in the try clause is lost. The finally clause should therefore handle all locally raised
exceptions, so as not to disturb propagation of other exceptions.
이런말이 나오던데 이 말은 finally 안에서 exception을 handling 할 수
있단 것처럼 보이는데 어떻게 하는지 잘 모르겠더군요.
finally 안에서 exception을 handling하려면 어떻게 하면 되나여?
.
|