We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d93fa98 commit dc46d7cCopy full SHA for dc46d7c
1 file changed
src/vws/exceptions.py
@@ -156,7 +156,8 @@ def response(self) -> Response:
156
return self._response
157
158
159
-class RequestQuotaReached(Exception):
+# See https://github.com/adamtheturtle/vws-python/issues/822.
160
+class RequestQuotaReached(Exception): # pragma: no cover
161
"""
162
Exception raised when Vuforia returns a response with a result code
163
'RequestQuotaReached'.
@@ -318,7 +319,8 @@ def response(self) -> Response:
318
319
320
321
-class DateRangeError(Exception):
322
+# See https://github.com/adamtheturtle/vws-python/issues/846.
323
+class DateRangeError(Exception): # pragma: no cover
324
325
326
'DateRangeError'.
0 commit comments