See below for an explanation of what is going on
I have a really weird issue where the exception caught is null.
The code uses MEF and tries hard to report composition errors. Using the debugger I can see the exception being thrown (an InvalidOperationException
) but when it is caught by the last catch block in the code below the ex
variable is null. This is true both in the debugger and when executing the code normally.
static T ResolveWithErrorHandling<T>() where T : class { try { IocContainer.Compose(Settings.Default.IocConfiguration); return IocContainer.Resolve<T>(); } catch (ReflectionTypeLoadException ex) { // ... special error reporting for ReflectionTypeLoadException } catch (Exception ex) { // ex is null - that should not be possible! // ... general error reporting for other exception types } return null; }
The code I have replaced with comments is really simple code to format the error message. Nothing strange going on there.
I have tried to alter the code to discover what effect that might have:
ReflectionTypeLoadException
) the exception caught in the final catch block is no longer null.InvalidOperationException
as the first catch block the exception caught in that block is not null.InvalidOperationException
between the two catch blocks the exception caught in that block is null.The project uses Code Contracts and the code generated by the compiler is post-processed to check the contracts. Unfortunately, I havn't figured out a way to get rid of this for testing purposes without performing major surgery on the project.
My current workaround is to not catch ReflectionTypeLoadException
and instead branch on the type of ex
in the general exception handler.
What could be the explanation for this "impossible" behavior? What is up with ReflectionTypeLoadException
catch block?
Embarrassingly the exception is not null and it cannot be null per the C# standard 15.9.5.
However, using Code Contracts in a project can mess up the display of local variables in the debugger because the IL code generated by the compiler can be rewritten by Code Contracts so the final IL is slightly out of sync with the debug information. In my case the ex
variable is displayed as null even it is not. The unfortunate nature of the error reporting taking place right before application termination meant that I believed the error reporting to not be called as a result of ex
being null and ex.Message
throwing a NullReferenceException
inside my catch block. Using the debugger I was able to "verify" that ex
was null, except it was actually not null.
My confusion was compounded by the fact that a catch block for ReflectionTypeLoadException
seems to affect the debugger display issue.
Thanks to all who responded.
A NullReferenceException exception is thrown by a method that is passed null . Some methods validate the arguments that are passed to them. If they do and one of the arguments is null , the method throws an System.
NullPointerException is a runtime exception in Java that occurs when a variable is accessed which is not pointing to any object and refers to nothing or null. Since the NullPointerException is a runtime exception, it doesn't need to be caught and handled explicitly in application code.
An ArgumentNullException exception is thrown when a method is invoked and at least one of the passed arguments is null but should never be null .
The Anatomy of C# Exceptions catch – When an exception occurs, the Catch block of code is executed. This is where you are able to handle the exception, log it, or ignore it. finally – The finally block allows you to execute certain code if an exception is thrown or not.
Just ran into this same problem. I finally found out that I catched different exceptions with the same name, like you did:
catch (ReflectionTypeLoadException ex) { // ... } catch (Exception ex) { // ex is not null! // ... }
Both are named 'ex'. Changing one of both names solved this problem for me, like:
catch (ReflectionTypeLoadException reflectionEx) { // ... } catch (Exception ex) { // ex is null - that should not be possible! // ... }
I ran in the same problem. In my case renaming the exception variable (e.g. ex => ex1) allowed to me to catch any exception...
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With