I've recently started developing my first web app with GAE and Python, and it is a lot of fun.
One problem I've been having is exceptions being raised when I don't expect them (since I'm new to web apps). I want to:
- Prevent users from ever seeing exceptions
- Properly handle exceptions so they don't break my app
Should I put a try/except block around every call to put and get? What other operations could fail that I should wrap with try/except?