DebugFilesKeyError
Raised from request.files during debugging. The idea is that it can provide a better error message than just a generic KeyError/BadRequest.
Constructor
Signature
def DebugFilesKeyError(
request: [Request](../wrappers/request.md?sid=flask_wrappers_request),
key: str
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| request | [Request](../wrappers/request.md?sid=flask_wrappers_request) | The request object from which the file was attempted to be accessed. |
| key | str | The key (file name) that was not found in the request.files dictionary. |