ExceptionHandler Methods |
The ExceptionHandler type exposes the following members.
| Name | Description | |
|---|---|---|
| Equals | (Inherited from Object.) | |
| Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
| GenerateException(Object, String, Exception) |
Generates a new exception.
| |
| GenerateException(String, String, Exception) |
Generates a new exception.
| |
| GenerateException(String, String, String) |
Generates a new exception.
| |
| GenerateException(Object, String, Exception, String) |
Generates a new exception.
| |
| GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
| GetType | Gets the type of the current instance. (Inherited from Object.) | |
| HandleException(Object, String, Exception) |
This method will take proper actions depending on exception type.
| |
| HandleException(String, String, Exception) |
This method will take proper actions depending on exception type.
| |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
| ReThrowException(Object, String, Exception) |
Generates a new exception.
| |
| ReThrowException(String, String, Exception) |
This method will take proper actions depending on exception type.
| |
| ToString | Returns a string that represents the current object. (Inherited from Object.) | |
| TraceHandledSystemExceptions(Object, String, Exception) |
When a System.Exception have to be hidden we should call this function so that
we can at least log the exception information.
NOTE: This function should not be used unless we really really really have to.
Every exception should be taken care of instead.
| |
| TraceHandledSystemExceptions(String, String, Exception) |
When a System.Exception have to be hidden we should call this function so that
we can at least log the exception information.
NOTE: This function should not be used unless we really, really have to.
Every exception should be taken care of instead.
| |
| TraceHandledSystemExceptions(Object, String, Exception, String) |
When a System.Exception have to be hidden we should call this function so that
we can at least log the exception information.
NOTE: This function should not be used unless we really really really have to.
Every exception should be taken care of instead.
| |
| TraceHandledSystemExceptions(String, String, Exception, String) |
When a System.Exception have to be hidden we should call this function so that
we can at least log the exception information.
NOTE: This function should not be used unless we really really really have to.
Every exception should be taken care of instead.
|