assert(response.status == 401)
assert(error == "param 'foo' is invalid")
instead of: assert(response.status == Http.StatusUnauthorized)
assert(error == HttpError.InvalidParameter("foo"))
Can anyone point me to resources (books, posts, tweets, whatever) that better illustrate this and justify it?