Cfexecute timeout validation

Is there a way to validate the timeout in a CFEXECUTE ?

If a timeout occurs, show a message instead to run into an error?

Code example

<cfexecute timeout="20" variable="testresult" name="/script/execlab.php" arguments='"#test#" #test1# #test2#'></cfexecute>

<cfif testresult EQ "">
   Message: Sorry something went wrong, please try later again
   <cfabort/>
<cfelse>
rest of the code.......
</cfif>

thx. for any help

Wouldn’t cftry / cfcatch do what you want?