Description
Syntax
Classes | Exceptions Classes | Description |
|---|---|
| System.OutOfMemoryExecption | Used to Handle Errors Produce from insufficient memory |
| System.DivideByZeroExecption | Used to Handle Errors Produce from dividend with zero |
| System.IndexOutOfRangeExecption | Used to Handle Errors produces from array index out of range |
| System.NullReferenceExecption | Used to Handle Errors produces from null object |
| System.StackOverflowExecption | Used to Handle Errors Producer from Stack overflow |
| System.InvalidCastExecption | Used to Handle Errors Producer from during typecasting |
| System.ArrayTypeMisMatchExecption | Used to Handle Errors Producer from mismatched with the array type |
| System.IO.IOExecption | Used to Handle I/O Errors |
Example
Example
Points