Provides a form that displays an exception to the user
Inheritance: IExceptionNotifier
Example #1
0
 /// <summary>
 /// Sets up the exception notifier used to display
 /// exceptions to the final user.  If not specified,
 /// assumes the FormExceptionNotifier.
 /// </summary>
 protected override void SetupExceptionNotifier()
 {
     if (ExceptionNotifier == null)
     {
         ExceptionNotifier = new FormExceptionNotifier();
     }
     GlobalRegistry.UIExceptionNotifier = ExceptionNotifier;
 }
 /// <summary>
 /// Sets up the exception notifier used to display
 /// exceptions to the final user.  If not specified,
 /// assumes the FormExceptionNotifier.
 /// </summary>
 protected override void SetupExceptionNotifier()
 {
     if (ExceptionNotifier == null) ExceptionNotifier = new FormExceptionNotifier();
     GlobalRegistry.UIExceptionNotifier = ExceptionNotifier;
 }