up vote 4 down vote favorite
2
share [g+] share [fb]

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?

link|improve this question

1  
You might wish to revisit your accepted answer. jrista's answer is better than the others, because an InnerException can have its own InnerException. – Kyralessa Sep 21 '09 at 20:19
1  
Keep in mind that ToString walks through the inner exceptions and combines them for you. This can be a handy short-cut when logging. – Steven Sudit Sep 21 '09 at 20:22
feedback

6 Answers

up vote 14 down vote accepted

Is this what you are looking for?

String innerMessage = (ex.InnerException != null) 
                      ? ex.InnerException.Message
                      : "";
link|improve this answer
Exactly right, thanks... – JL. Sep 21 '09 at 20:10
Was there a problem with mine? – Noldorin Sep 21 '09 at 20:11
Also, is it just me, or would it look a bit cleaner if the arguments were flipped and the != changed to ==. – Noldorin Sep 21 '09 at 20:12
3  
Matter of preference, I much prefer != for null checks. – Kyle Rozendo Sep 21 '09 at 20:13
1  
@Noldorin - Sorry dude, I answered this and didn't check to see if I was first! @JL - Noldorin was the first out of the chute with the correct answer, please transfer the accepted answer to him. – Andrew Hare Sep 21 '09 at 20:17
show 2 more comments
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:

public static class ExceptionExtensions
{
    public static Exception GetOriginalException(this Exception ex)
    {
        if (ex.InnerException == null) return ex;

        return ex.InnerException.GetOriginalException();
    }
}

And in use:

repEvent.InnerException = ex.GetOriginalException();
link|improve this answer
Am I missing something here or is ex.GetOriginalException() for innerException not top level ex? – JL. Sep 21 '09 at 20:23
I'm not sure what your asking. GetOriginalException will return the original exception that initiated the whole exception chain, regardless of whether there is only one exception (no InnerException at all), or many levels of InnerExceptions. – jrista Sep 21 '09 at 21:15
feedback

The simplest solution is to use a basic conditional expression:

repEvent.InnerException = ex.InnerException == null ? 
    null : ex.InnerException.Message;
link|improve this answer
+1 From me - that's what I get for firing and forgetting :) – Andrew Hare Sep 21 '09 at 20:18
No problem at all, just that Andrew's code returned a string. – JL. Sep 21 '09 at 20:19
@JL: Actually, mind returns a string too. I just assumed from the code that you were calling the string property InnerException (just be confusing?). Never mind though. @Andrew: Thanks. And though I don't at all mind, +1 to yours for the courtesy. – Noldorin Sep 21 '09 at 20:25
@Nordorin, Ah I see where the issue comes in, I've gone string because exceptions don't serialize well (if they do at all). – JL. Sep 21 '09 at 20:58
@JL: Exceptions that come with the .NET framework serialize fine, as all of them have a deserialization constructor. Custom exceptions may not serialize properly, but it is easy enough to add a deserialization constructor and override GetObjectData. Third-party extensions could be made serializable with a serialization surrogate. – jrista Sep 22 '09 at 2:17
feedback

Sometimes also InnerException has an InnerException, so you can use a recursive function for it:

public string GetInnerException(Exception ex)
{
     if (ex.InnerException != null)
     {
        return string.Format("{0} > {1} ", ex.InnerException.Message, GetInnerException(ex.InnerException));
     }
   return string.Empty;
}
link|improve this answer
I'm all for digging down to the oldest exception, but there's really no reason to recurse here. Just loop while inner exception is not null. – Steven Sudit Sep 21 '09 at 20:21
Is recursion evil or something? – tster Sep 21 '09 at 20:52
To understand what recursion is you must first understand recursion :-) – Jan Remunda Sep 22 '09 at 6:02
E.g. in Entity Framework are usefully exceptions deep inside. – Jan Remunda Sep 22 '09 at 6:09
Recursion isn't evil, but it can be expensive, so if you don't need it, don't use it. In the case of inner exceptions, you have no need to keep pushing the current state onto a stack so that you can continue where you left off, so why use recursion and pay this price? There are also cases where recursion is much, much slower than regular iteration, such as calculating the Fib series. – Steven Sudit Sep 22 '09 at 10:07
show 1 more comment
feedback

Yes:

if (ex.InnerException == null) {
    // then it's null
}
link|improve this answer
feedback

That's funny, I can't find anything wrong with Exception.GetBaseException()?

repEvent.InnerException = ex.GetBaseException().Message;
link|improve this answer
For one thing, it's virtual. – Steven Sudit Sep 22 '09 at 10:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.