Create custom exceptions which are then added to existing try catch blocks (above the general exception as they are processed top down.)
Custom Exception
1 | using System; |
Consumption
1 | private void ThrowCoordinateNotFoundException(string messagePart) |
Handling Exceptions
1 | try |