pallets / werkzeug

The comprehensive WSGI web application library.
https://werkzeug.palletsprojects.com
BSD 3-Clause "New" or "Revised" License
6.63k stars 1.73k forks source link

Add "421 Misdirected Request" http exception #2850

Open n1ngu opened 7 months ago

n1ngu commented 7 months ago

Related: #1256

Any concerns against adding a http exception class for this status code?

Right now aborting fails with a LookupError: no exception for <HTTPStatus.MISDIRECTED_REQUEST: 421> error if you try

abort(http.HTTPStatus.MISDIRECTED_REQUEST)

The Aborter class can be enriched to feature extra status codes and the Response class can be used to return arbitrary status codes and messages. But wouldn't it make sense that this http exception was featured out of the box?