System.Xml.Tests.ExceptionVerifier.CheckNull C# (CSharp) Method

CheckNull() private static method

private static CheckNull ( Exception e ) : void
e System.Exception
return void
        private static void CheckNull(Exception e)
        {
            if (e == null)
            {
                throw new VerifyException("NULL exception passed to IsExceptionOk()");
            }
        }