Auto Updater detail messages on error

Is there a way to get the error message details from the auto updater? I have my autoupdater hidden and I am using events to trap and display to the user what is going on. For example, when I get the UpdateFailed event, I would like to display to the user the error message that they would have received from the Auto Updater details menu item.

Thanks. After digging a bit, I found that what I needed to do to get the error text on the UpdateFail (or any fail event) is to make the event args of type wyDay.Controls.FailArgs then I can use that to get the text.

Here is an example so someone else may be able to find it easier (vb example):

Private Sub automaticUpdater1_DownloadFailed(ByVal sender As System.Object, ByVal e As wyDay.Controls.FailArgs) Handles AutomaticUpdater1.DownloadingOrExtractingFailed MsgBox ("Checking for Updates Failed " & e.ErrorMessage.ToString) End Sub