Viewing InnerExceptions

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi

When an exception occurs how can I view InnerExceptions to get to the bottom
of the problem? Is it possible to view all InnerExceptions?

Thanks

Regards
 
Hi

When an exception occurs how can I view InnerExceptions to get to the bottom
of the problem? Is it possible to view all InnerExceptions?

Thanks

Regards

If there is an InnerException, the InnerException property of the
exception will not be Nothing. If it isn't the message is in the
InnerException's Message property. An inner exception can have an
inner exception, and do forth. Just keep checking the InnerException
property for not Nothing.
 
Back
Top