You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But the error message is parsed in ErrorResponses , but is not the good format.
It make an exception of Deserialise not an exception with the salesforce message.
private static ForceException ParseForceException(string responseMessage)
{
var errorResponse = JsonConvert.DeserializeObject<ErrorResponses>(responseMessage);
return new ForceException(errorResponse[0].ErrorCode, errorResponse[0].Message);
}
You're welcome.
The text was updated successfully, but these errors were encountered:
Hello,
When I use CreateAsync and salesforce return a error.
Salesforce return this
But the error message is parsed in ErrorResponses , but is not the good format.
It make an exception of Deserialise not an exception with the salesforce message.
You're welcome.
The text was updated successfully, but these errors were encountered: