private void StoreRepository_ExceptionReceived(object sender, StoreException e)
 {
     this.LogMessage("ExceptionReceived: " + e.Description + " :: " + e.BaseException.Message);
 }
		private void BroadcastException(StoreException exception)
		{
			if (this.ExceptionReceived != null && exception != null)
			{
				this.ExceptionReceived(this, exception);
			}
		}