functionNotFound()
Initializes a front call answer object with "Function not found" error.
Syntax
(a FrontCallAnswer) functionNotFound()
- a is the front call answer object to initialize.
Usage
You would use this method after a front call request to getFunctionName(). If an error is returned, the front call chain will stop and the error is returned to the DVM.
You must declare a variable of type ggc.FrontCallAnswer
. For example:
DEFINE fcAnswer FrontCallAnswer
...
CALL fcAnswer.functionNotFound()