v3.12.0
Added
- Items to YotiProfileException:
- ErrorCode
- ResponseContent
Example:
using Yoti.Auth.Exceptions;
try
{
ActivityDetails activityDetails = client.GetActivityDetails(encryptedToken);
}
catch (YotiProfileException profileEx)
{
string errorCode = profileEx.ErrorCode;
string responseContent= profileEx.ResponseContent;
}