الرئيسية > lang > finally 
 en fr de es it nl pl pt pt_BR mk sq ca hu cs tr fa id vi ko ja ru zh zh_TW eo
السابق  التالي  تحرير  إعادة تسمية  تراجع  بحث  الإدارة  
المستندات  
تحذير! هذه الصفحة لم يتم ترجمتها.  See english version 
FINALLY
SUB Function(...)
  ...
FINALLY
  ...
END

This instruction introduces the code executed at the end of the function, even if a error was raised during its execution.

The FINALLY part is not mandatory. If there is a catch part in the function, the FINALLY part must precede it.

If an error is raised during the execution of the FINALLY part, it is normally propagated.

See CATCH for more details and for a code example.

إنظر أيضا

إدارة الأخطاء