Habanero.Faces.Win.HabaneroAppWin.SetupExceptionNotifier C# (CSharp) Method

SetupExceptionNotifier() protected method

Sets up the exception notifier used to display exceptions to the final user. If not specified, assumes the FormExceptionNotifier.
protected SetupExceptionNotifier ( ) : void
return void
        protected override void SetupExceptionNotifier()
        {
            if (ExceptionNotifier == null) ExceptionNotifier = new FormExceptionNotifier();
            GlobalRegistry.UIExceptionNotifier = ExceptionNotifier;
        }
    }