
- Forum
- Programming Talk
- C Sharp
- Exception and Inner Exception
Exception and Inner Exception
This is a discussion on Exception and Inner Exception within the C Sharp forums, part of the Programming Talk category; I would like to know the difference between Exception and Inner Exception....
-
11-20-2011, 02:54 AM #1
- Join Date
- Jan 2006
- Answers
- 12
Exception and Inner Exception
I would like to know the difference between Exception and Inner Exception.
-
Hi,
Exception
Exceptions are technique used to communicate errors safely.
Inner Exception
Wrapping all exceptions in a custom exception object, so that it can provide additional information about what the code was doing when the exception was thrown. Passing ex(exception object) as parameter, we can bypass the original Exception and also it preserve all the original properties & stack trace.
Please correct me if it is wrong.

Reply With Quote





