Writing in Rack with a complete error catch
Man, forgetting to add my little error catching trick inside of one app I was writing made me realize how much I take such a simple trick for granted.
I basically write all my rack code in a way similar to that. Normally I'll probably throw in another error catching level that catches special formated ErrorPage classes for things like NoPage to generate a 404. But this here is…