If you're showing the AutomaticUpdater control on your form then the user can just click the control and click "View error details".
Programmatically you can get the error message by using the "FailArgs" parameter of your event handler. For example:
void automaticUpdater_CheckingFailed(object sender, wyDay.Controls.FailArgs e){ MessageBox.Show(e.ErrorMessage, e.ErrorTitle);}