Forum Discussion
praveensqa
13 years agoContributor
Hi,
Use exception handling.
'Exception handling
On Error Resume Next
Err.Clear
' here you handle the exception
ArraryVerify = Response.return.assetTrackVOs(0).assetId ' write your hadle code
if Err.Number <> 0 then
' An exception occurred
log.Error Err.Number
Log.Error Err.Description
end if
Use exception handling.
'Exception handling
On Error Resume Next
Err.Clear
' here you handle the exception
ArraryVerify = Response.return.assetTrackVOs(0).assetId ' write your hadle code
if Err.Number <> 0 then
' An exception occurred
log.Error Err.Number
Log.Error Err.Description
end if