Test 'finally' block compiler.
Tüm denetlemeler başarılı oldu
The build was successful.

Bu işleme şunda yer alıyor:
Rafal Kupiec 2019-06-04 07:39:30 +02:00
ebeveyn 045ebe92ae
işleme 84b5fd2717
İmzalayan: belliash
GPG Anahtar Kimliği: 4E829243E0CFE6B4

Dosyayı Görüntüle

@ -24,6 +24,8 @@ class Program {
throw new NewException("Catch me once", 1);
} catch(Exception $e) {
ExceptionHandler::handleException($e);
} finally {
print("Called finally block 1\n");
}
throw new Exception("Catch me twice", 2);
}