示例#1
0
        public static RecoveryOptionResult PresentUserException(UserException ex)
        {
            if (CustomErrorPresentationFunc != null)
            {
                return(CustomErrorPresentationFunc(ex));
            }

            // TODO: Pop the WPF dialog here if we're not in Silverlight
            throw new NotImplementedException();
        }
 public void UserExceptionConstructorTest()
 {
     return;
     UserException target = new UserException("Foo");
     Assert.Inconclusive("TODO: Implement code to verify target");
 }