문장이 복잡해서 자신 없지만..
할수 있다가 아닌 해야한다라는 내용으로 봐서는..
Try
Except
On E : Exception do ...;
End
이런 형태로 Exception을 핸들링할 수 있다라는 뜻이 아니라....
Try Finally에서 발생한 Exception에 대한 코딩을 해줘서..
에러의 전파를 방지해야한다는 뜻이 아닐까요??
Try Finally에서 에러가 발생하더라도..
Finally는 반드시 실행되지만..
여전히 에러는 발생하니..
이에 대한 처리를 해라.. 가 아닐까 합니다..
From 류..
박정모 님이 쓰신 글 :
: .
: 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하려면 어떻게 하면 되나여?
: .
:
|