The program - GEO POINTS & EXCEPTIONS - does the following in the exception handling:
- Add three except blocks.
- The first will catch a TypeError exception and display "Wrong type of input!"
- The second will catch an exception of your choice and display a message that makes sense.
- The third will catch a generic Exception along with its object e and display the message "something went wrong: ", e, so that the error message e is displayed.