This is to be used to track errors that users will
not see, such as email traffic, etc. I recommend using
ELMAH for regular error-catching; no need to re-invent the wheel.
Top
1 - Properties
Top
2 - Objects
Top
3 - Methods
Top
3.1 - New
Enters an
error object into the
error table.
- Inputs: string title_prefix, Exception exception
- Returns: void
- Notes:
- The title of the error object is [title_prefix] - [exception.Message]
- The details of the error object will be populated by running through the exception.Data dictionary entries, if you want anyhting to show up, these must be populated:
exception.Data.Add("some data", "details for that data");
//now this will be input into the error table