protected void OnError(/*Context context, */String errorId) { Log.Debug(typeof(NotificationService).Name, "onError", "Error caught, " + errorId); NotificationException notificationException = new NotificationException(typeof(NotificationException).Name, "onError", "Error caught: " + errorId); NotificationManager notificationManager = NotificationManager.GetInstance(); notificationManager.OnError(notificationException); }
public void OnError(NotificationException notificationException) { INotificationEvents notificationEventsHandler = connectResourceManager.GetNotificationEventHandler(); if(notificationEventsHandler != null) { notificationEventsHandler.OnError(notificationException); } }