warnings¶
FieldValueNotRecognized
¶
A field or value used in the request is not recognised by this implementation.
Source code in optimade/server/warnings.py
27 28 | |
MissingExpectedField
¶
A field was provided with a null value when a related field was provided with a value.
Source code in optimade/server/warnings.py
39 40 41 | |
OptimadeWarning
¶
Base Warning for the optimade package
Source code in optimade/server/warnings.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | |
QueryParamNotUsed
¶
A query parameter is not used in this request.
Source code in optimade/server/warnings.py
35 36 | |
TimestampNotRFCCompliant
¶
A timestamp has been used in a filter that contains microseconds and is thus not RFC 3339 compliant. This may cause undefined behaviour in the query results.
Source code in optimade/server/warnings.py
44 45 46 47 48 | |
TooManyValues
¶
A field or query parameter has too many values to be handled by this implementation.
Source code in optimade/server/warnings.py
31 32 | |
UnknownProviderProperty
¶
A provider-specific property has been requested via response_fields or as in a filter that is not
recognised by this implementation.
Source code in optimade/server/warnings.py
51 52 53 54 55 | |
UnknownProviderQueryParameter
¶
A provider-specific query parameter has been requested in the query with a prefix not recognised by this implementation.
Source code in optimade/server/warnings.py
58 59 60 61 62 | |