CK.Monitoring.Tests.TextFileTests.ThrowLoaderException C# (CSharp) Method

ThrowLoaderException() static private method

static private ThrowLoaderException ( ) : Exception
return System.Exception
        static Exception ThrowLoaderException()
        {
            Exception e = null;
            try { Type.GetType( "A.Type, An.Unexisting.Assembly", true ); }
            catch( Exception ex ) { e = ex; }
            return e;
        }
    }