エラーが発生した場合は、DisplayCustomErrorを無視しますが、例外をスローしません。 期待される結果 - objHTTP.send(json)の後に例外メッセージがスローされます。 Call Err.Raiseを試しましたが、何も投げていません。コードはVBスクリプトVBScriptでのエラー処理:エラーが発生していない
sub run
On Error Resume Next
wrapper.getVariable("Plant_Price_PerKW").value = excel.range("'Cases'!$H$331")
wrapper.getVariable("Net_Present_Value").value = excel.range("'Cases'!$H$782")
wrapper.getVariable("IRR").value = excel.range("'Cases'!$H$783")
Dim strMessage
If Err.Number <> 0 And excel.range("'Cases'!$H$783") = "" Then
strMessage = "IRR cannot be computed. "
DisplayCustomError(strMessage)
WScript.Quit
ElseIf Err.Number <> 0 And (excel.range("'Cases'!$H$783") <> "") Then
strMessage = "Other Outputs cannot be computed."
DisplayCustomError(strMessage)
WScript.Quit
End If
end sub
Sub DisplayCustomError(strMessage)
If Err.Number <> 0 Then
Dim errorMessage, objHTTP, URL, json, errorCode, uniqueId, networkInfo, jobId
errorMessage ="Error while executing EVMLite. Error number " & Err.Number & ". " & Err.Description & " " & Err.Source & strMessage
errorCode = "ERR-1004"
uniqueId = wrapper.getVariable("UniqueId").value
Set networkInfo = CreateObject("WScript.NetWork")
jobId = networkInfo.ComputerName
Set objHTTP = CreateObject("MSXML2.ServerXMLHTTP")
URL = "http://10.93.244.224343:9005/vpp/logerror"
objHTTP.Open "POST", URL, False
objHTTP.SetRequestHeader "Content-Type", "application/json"
json = "{""jobId"": """& jobId &""", ""uniqueId"": """& uniqueId &""", ""errorCode"": """& errorCode &""", ""errorMessage"": """& errorMessage &"""}"
'MsgBox json
objHTTP.send (json)
On Error Goto 0
Call Err.Raise(vbObjectError + 10, "EVM Failed to execute", errorMessage)
'MsgBox objHTTP.ResponseText
End If
end sub
エラーを無視するために「On Error Resume Next」を使用しています。それを取り除く。 – braX
@braX On Error Resume NextSubを削除しようとしましたが、例外がスローされていますが、サブDisplayCustomError(strMessage)には入っていないので、2回目はDisplayCustomError(strMessage)になります。 –
どのようなエラーが発生しているかを判断し、ifステートメントを使用してエラーを回避します。エラーに応じて、コードを書くのが悪い方法です。 – braX