BuildIt.Bot.Client.Impl.Droid.Utilities.GcmService.OnRecoverableError C# (CSharp) Method

OnRecoverableError() protected method

protected OnRecoverableError ( Android.Content.Context context, string errorId ) : bool
context Android.Content.Context
errorId string
return bool
        protected override bool OnRecoverableError(Context context, string errorId)
        {
            //Some recoverable error happened
            MessagingCenter.Send(this, Constants.FailureSubscriptionMsg, new Exception(errorId));

            return base.OnRecoverableError(context, errorId);
        }