なぜRubyはStandardError
、によって暗黙的に例外のみを処理するように設計されているのrescue
ですか?他の例外については、なぜそれらを明示的に指定する必要があるのrescue
ですか?
begin
#codes here which may generates exceptions
rescue
#codes to handle some thing which really needed to be done when exceptions there
end
誰かが私がそのコアを理解するのを手伝ってもらえますか?