Web development often calls for gracefully handling of non-existent pages or broken links that users request for. A simple way to achieve error handling in Tornado is with: tornado.web.HTTPError - Exception handler that can used to generate error code of specified type. It is often used to raise an exception as we would see in … Continue reading Tornado – Error Handling