where can I check the error number mean?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I would like to know about details of error number on each exception. How can I know what the error number is?

regards,
KPH
 
Exceptions don't use numbers. Exceptions are "types" in .NET and so, to
know what kind of exception you've encountered, you need to know the type
(which comes up as part of the exception error message).

You can use the getType.toString method of any exception to see its type as
well.


KPH said:
Hi,

I would like to know about details of error number on each exception. How
can I know what the error number is?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top