*501* `Not Implemented` Raise if the application does not support the action requested by the browser.
| 763 | |
| 764 | |
| 765 | class NotImplemented(HTTPException): |
| 766 | """*501* `Not Implemented` |
| 767 | |
| 768 | Raise if the application does not support the action requested by the |
| 769 | browser. |
| 770 | """ |
| 771 | |
| 772 | code = 501 |
| 773 | description = "The server does not support the action requested by the browser." |
| 774 | |
| 775 | |
| 776 | class BadGateway(HTTPException): |