Click here to Skip to main content
Click here to Skip to main content

Retrieve the LoaderException property for more information…

By , 29 Nov 2012
 

Here’s the exception I received today:

System.Reflection.ReflectionTypeLoadException. Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.

Isn’t it lovely? Do the authors think I have a little leprechaun sitting on the user machine and waiting for my command to retrieve the pot of gold the LoaderException property?

And if not, what do they expect my handling for oddball exceptions to be like? Perhaps something like

catch (StrangeExceptionVarietyOne ex)
{
    Log(ex.ToString());
    Log(ex.FunkyPropertyOne);
}
catch (TotallyObscuredExceptionTwo ex)
{
    Log(ex.ToString());
    Log(ex.TotalObscurerAdditionalDataCollection);
}
catch (ReflectionTypeLoadException ex)
{
    Log(ex.ToString());
    foreach (var loaderEx in ex.LoaderExceptions) Log(loaderEx.ToString());
}
...

Not gonnna happen. A good exception should have everything in its ToString(). As in “for debugging purposes, AggregateException‘s ToString implementation outputs a string rendering all the contained exceptions“. This is a good exception. This is an exception I like to work with. Why can’t all exceptions be like that?

License

This article, along with any associated source code and files, is licensed under The Apache License, Version 2.0

About the Author

Ivan Krivyakov
Architect Sungard Consulting Services
United States United States
Member
Ivan is a hands-on software architect working for SunGard Consulting, in the New York City area. At present I am mostly building complex multi-threaded WPF application for the financial sector, but I am also interested in cloud computing, web development, mobile development, etc.
 
Please visit my web site: www.ikriv.com.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionAnother way: http://stackoverflow.com/a/8824250/153923memberjp2code15 Mar '13 - 10:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130513.1 | Last Updated 29 Nov 2012
Article Copyright 2012 by Ivan Krivyakov
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid