vote up 0 vote down star

Hi,

I need to return an exception that contains a list of exceptions. This is easy enough to do, but I'd like to know if there is a built-in Exception Class that does this as I'd hate to "roll my own" instead of following built-in, documented classes.

Thanks, Larry

flag

Returning exceptions is something of an anti-pattern. – Joel Coehoorn Jun 14 at 20:10
Sorry, I should have said "throw exception". – Larry Watanabe Jun 15 at 12:37
I agree, exceptions should always be thrown (unless it's an Exceptoin Factory :) – Larry Watanabe Sep 15 at 13:28

1 Answer

vote up 1 vote down check

There is the InnerException property, but if you need more than that, you'll need to roll your own.

link|flag
Thanks - it is theoretically possible to create a linked list of Exceptions, using the InnerException property, but the purpose of the InnerException is to give a reference to the Exception that caused that Exception (that contains the property). So, I think it would be a mis-use of the property to use it for Exceptions that are basically orthogonal, so I will (and have) gone ahead with my own ExceptionList class. – Larry Watanabe Jun 15 at 12:44

Your Answer

Get an OpenID
or

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