in spreadsheet/Sheet1.vb [754:763]
import_graph_results_err:
If Err.Number = 10001 Then
MsgBox "Error while importing graph results: please verify that the file " & json_file & " has a valid JSON format", vbCritical
ElseIf Err.Number = 76 Then
Resume Next
ElseIf Err.Number <> 0 Then
MsgBox "Error while importing graph results: " & CStr(Err.Number) & ": " & Err.Description, vbCritical
End If
Exit Sub
End Sub