This is the legacy 4D documentation web site. Documentations are progressively being moved to developer.4d.com |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
4D v19.8
Method called on error
|
Method called on error -> Function result | ||||||||
Parameter | Type | Description | ||||||
Function result | String |
![]() |
Name of method called on error | |||||
The Method called on error command returns the name of the method installed by the ON ERR CALL command for the current process.
If no such method has been installed, an empty string ("") is returned.
This command is particularly useful in the context of components because it enables you to temporarily change and then restore the error-catching methods:
$methCurrent:=Method called on error
ON ERR CALL("NewMethod")
` If the document cannot be opened, an error is generated
$ref:=Open document("MyDocument")
` Reinstallation of previous method
ON ERR CALL($methCurrent)
Product: 4D
Theme: Interruptions
Number:
704
Created: 4D v6.8.1
4D Language Reference ( 4D v19)
4D Language Reference ( 4D v19.1)
4D Language Reference ( 4D v19.4)
4D Language Reference ( 4D v19.5)
4D Language Reference ( 4D v19.6)
4D Language Reference ( 4D v19.7)
4D Language Reference ( 4D v19.8)