Home > lang > finally 
 en fr de es it nl pl pt pt_BR mk sq ca hu cs tr ar fa id vi ko ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Search  Administration  
Documentation  
Warning! This page is not translated.  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.

See also

Error Management