private void ExecuteWithResponse(IRequestMessage msg)
 {
     try
     {
         msg.Channel.Send(_messageFactory.CreateResponseMessage(msg.CorrelationId, Execute(msg)));
     }
     catch (Exception e)
     {
         msg.Channel.Send(_messageFactory.CreateExceptionResponseMessage(msg.CorrelationId, e.GetType(), e.Message));
     }
 }