I know sometimes innerException is null
So the following might fail:
repEvent.InnerException = ex.InnerException.Message;
Is there a quick ternary way to check if innerException is null or not?
|
I know sometimes innerException is null So the following might fail:
Is there a quick ternary way to check if innerException is null or not?
| |||||||||
feedback
|
|
Is this what you are looking for?
| |||||||||||||||
feedback
|
|
Great answers so far. On a similar, but different note, sometimes there is more than one level of nested exceptions. If you want to get the root exception that was originally thrown, no matter how deep, you might try this:
And in use:
| |||||
feedback
|
|
The simplest solution is to use a basic conditional expression:
| |||||||||||
feedback
|
|
Sometimes also InnerException has an InnerException, so you can use a recursive function for it:
| |||||||||||
feedback
|
|
That's funny, I can't find anything wrong with Exception.GetBaseException()?
| |||
|
feedback
|