errors
stac_fastapi.types.errors ¶
stac_fastapi.types.errors module.
ConflictError ¶
Bases: StacApiError
Database conflict.
Source code in stac_fastapi/types/errors.py
10 11 12 13 |
|
DatabaseError ¶
Bases: StacApiError
Generic database errors.
Source code in stac_fastapi/types/errors.py
28 29 30 31 |
|
ForeignKeyError ¶
Bases: StacApiError
Foreign key error (collection does not exist).
Source code in stac_fastapi/types/errors.py
22 23 24 25 |
|
InvalidQueryParameter ¶
Bases: StacApiError
Error for unknown or invalid query parameters.
Used to capture errors that should respond according to docs.opengeospatial.org/is/17-069r3/17-069r3.html#query_parameters
Source code in stac_fastapi/types/errors.py
34 35 36 37 38 39 40 41 |
|
NotFoundError ¶
Bases: StacApiError
Resource not found.
Source code in stac_fastapi/types/errors.py
16 17 18 19 |
|