(Framework Errors)

  • Thread starter Thread starter jtlivio
  • Start date Start date
J

jtlivio

Hi!

Is it possible to catch all framework errors to a Table?, or is there
any link with this information in order to import?

Thanks
Regards
Joao
 
Hi Joao,
Is it possible to catch all framework errors to a Table?, or is there
any link with this information in order to import?

I'm not exactly sure what you mean with your question, but are you looking
for some kind of list of all .NET Framework errors, or are you trying to
collect all exceptions in your application to a central list?

Could you tell us more about your problem so that we could help you better?

Thanks!

--
Regards,

Mr. Jani Järvinen
C# MVP
Helsinki, Finland
(e-mail address removed)
http://www.saunalahti.fi/janij/
 
Hello (e-mail address removed),

what do u mean?
now to log all unhandle exeptions ?

---
WBR,
Michael Nemtsev [.NET/C# MVP] :: blog: http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo
 
I want to create a database with at least all the common Framework
Exceptions in order to insert some help solutions in the Database.

Thanks


Example:

System.Net.WebException: The operation has timed-out.


SYMPTOMS
....
....
CAUSE
....
....
RESOLUTION
....
....


Hello (e-mail address removed),

what do u mean?
now to log all unhandle exeptions ?

---
WBR,
Michael Nemtsev [.NET/C# MVP] :: blog:http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo


Is it possible to catch all framework errors to a Table?, or is there
any link with this information in order to import?
Thanks
Regards
Joao- Ocultar texto citado -

- Mostrar texto citado -
 
Hello (e-mail address removed),

use then AppDomain.UnhandledException to catch all exeption which u are not
handling and store them into DB
---
WBR,
Michael Nemtsev [.NET/C# MVP] :: blog: http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo

I want to create a database with at least all the common Framework
Exceptions in order to insert some help solutions in the Database.

Thanks

Example:

System.Net.WebException: The operation has timed-out.

SYMPTOMS
...
...
CAUSE
...
...
RESOLUTION
...
...
Hello (e-mail address removed),

what do u mean?
now to log all unhandle exeptions ?
---
WBR,
Michael Nemtsev [.NET/C# MVP] :: blog:http://spaces.live.com/laflour
"The greatest danger for most of us is not that our aim is too high
and we miss it, but that it is too low and we reach it" (c)
Michelangelo
Hi!

Is it possible to catch all framework errors to a Table?, or is
there any link with this information in order to import?

Thanks
Regards
Joao- Ocultar texto citado -
- Mostrar texto citado -
 
Thanks!

Hello (e-mail address removed),

use then AppDomain.UnhandledException to catch all exeption which u are not
handling and store them into DB
---
WBR,
Michael Nemtsev [.NET/C# MVP] :: blog:http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo
I want to create a database with at least all the common Framework
Exceptions in order to insert some help solutions in the Database.


System.Net.WebException: The operation has timed-out.
SYMPTOMS
...
...
CAUSE
...
...
RESOLUTION
...
...
Hello (e-mail address removed),
what do u mean?
now to log all unhandle exeptions ?
---
WBR,
Michael Nemtsev [.NET/C# MVP] :: blog:http://spaces.live.com/laflour
"The greatest danger for most of us is not that our aim is too high
and we miss it, but that it is too low and we reach it" (c)
Michelangelo
Hi!
Is it possible to catch all framework errors to a Table?, or is
there any link with this information in order to import?
Thanks
Regards
Joao- Ocultar texto citado -
- Mostrar texto citado -
 
Back
Top