Job_ErrorHandling
Description
Section titled “Description”When Job_ErrorHandling is called the error description (sText) is placed in the top of the log. Function will return FALSE to indicate that the script has failed
Syntax
Section titled “Syntax”Job_ErrorHandling(sFunction, sText, iErrNumber) As Boolean
Parameters
Section titled “Parameters”sFunction (String)
Section titled “sFunction (String)”Current function
sText (String)
Section titled “sText (String)”Description of error
iErrNumber (Integer)
Section titled “iErrNumber (Integer)”Runtime errorcode
Example
Section titled “Example”Set oFsoDrv = oFso.GetDrive("A")sValue = oFsoDrv.FileSystemIf (sValue <> "") Then If bStatus Then bStatus = Job_WriteLog("Sys_GetFileSystemType", "FileSystem Type for Drive A is '" & sValue & "'", bStatus, True)Else sText = "Device not ready or unknown file system type for drive 'A'" bStatus = Job_ErrorHandling("Custom", sText, iErrNumber)End If