AdjustSdk.Pcl.RequestHandler.ProcessException C# (CSharp) Method

ProcessException() private method

private ProcessException ( Exception exception, ActivityPackage activityPackage ) : SendResponse
exception System.Exception
activityPackage ActivityPackage
return SendResponse
        private SendResponse ProcessException(Exception exception, ActivityPackage activityPackage)
        {
            Logger.Error("{0}. ({1}). Will retry later", activityPackage.FailureMessage(), Util.ExtractExceptionMessage(exception));

            return new SendResponse
            {
                WillRetry = true,
            };
        }

Same methods

RequestHandler::ProcessException ( WebException webException, ActivityPackage activityPackage ) : SendResponse