public void Execute(Arguments arguments)
 {
     try
     {
         IEWrapper ie = IEManager.CurrentIE;
         ie.DownLoadFile(arguments.Path.Value);
     }
     catch (Exception ex)
     {
         throw new ApplicationException($"Problem occured while saving file. Message: {ex.Message}", ex);
     }
 }