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?
 
Back
Top