By default, which arguments are available and should remain in the Global Exception Handler?
By default, which arguments are available and should remain in the Global Exception Handler?
By default, the Global Exception Handler in UiPath uses two arguments: 'errorinfo' and 'result'. The 'errorinfo' argument has the 'In' direction to accept information about the error encountered. The 'result' argument has the 'In/Out' direction, which allows it to be both read and modified within the handler. This configuration ensures that the handler can access error information and adjust the result as necessary.
errorinfo has in direction and result has out direction. found the same in UiPath documentation. so Correct option should be C.
C is correct