4D v16.3

Method called on error

Home

 
4D v16.3
Method called on error

Method called on error 


 

Method called on error -> Function result 
Parameter Type   Description
Function result  String in 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.

Example  

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)



See also 

ON ERR CALL

 
PROPERTIES 

Product: 4D
Theme: Interruptions
Number: 704

This command can be run in preemptive processes

 
HISTORY 

Created: 4D v6.8.1

 
ARTICLE USAGE

4D Language Reference ( 4D v16)
4D Language Reference ( 4D v16.1)
4D Language Reference ( 4D v16.2)
4D Language Reference ( 4D v16.3)