| 4D v15.4Method called on error | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|  | 
    4D v15.4
 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 v15.4)
	
	
	4D Language Reference ( 4D v15)
	
	
	
	
	
	4D Language Reference ( 4D v15.3)
 Add a comment
Add a comment