exception documentation

class InternalServerError(HTTPException): (source)

View In Hierarchy

*500* `Internal Server Error` Raise if an internal server error occurred. This is a good fallback if an unknown error occurred in the dispatcher. .. versionchanged:: 1.0.0 Added the :attr:`original_exception` attribute.

Method __init__ Undocumented
Class Variable code Undocumented
Class Variable description Undocumented
Instance Variable original_exception Undocumented

Inherited from HTTPException:

Method __call__ Call the exception as WSGI application.
Method __repr__ Undocumented
Method __str__ Undocumented
Method get_body Get the HTML body.
Method get_description Get the description.
Method get_headers Get a list of headers.
Method get_response Get a response object. If one was passed to the exception it's returned directly.
Instance Variable response Undocumented
Property name The status name.
def __init__(self, description: t.Optional[str] = None, response: t.Optional[Response] = None, original_exception: t.Optional[BaseException] = None): (source)
original_exception = (source)

Undocumented