File tree Expand file tree Collapse file tree 1 file changed +24
-3
lines changed
Expand file tree Collapse file tree 1 file changed +24
-3
lines changed Original file line number Diff line number Diff line change @@ -245,7 +245,14 @@ def __init__(self, response: Response) -> None:
245245 response: The response to a request to Vuforia.
246246 """
247247 super ().__init__ ()
248- self .response = response
248+ self ._response = response
249+
250+ @property
251+ def response (self ) -> Response :
252+ """
253+ The response returned by Vuforia which included this error.
254+ """
255+ return self ._response
249256
250257
251258class InactiveProject (Exception ):
@@ -260,7 +267,14 @@ def __init__(self, response: Response) -> None:
260267 response: The response to a request to Vuforia.
261268 """
262269 super ().__init__ ()
263- self .response = response
270+ self ._response = response
271+
272+ @property
273+ def response (self ) -> Response :
274+ """
275+ The response returned by Vuforia which included this error.
276+ """
277+ return self ._response
264278
265279
266280class DateRangeError (Exception ):
@@ -275,7 +289,14 @@ def __init__(self, response: Response) -> None:
275289 response: The response to a request to Vuforia.
276290 """
277291 super ().__init__ ()
278- self .response = response
292+ self ._response = response
293+
294+ @property
295+ def response (self ) -> Response :
296+ """
297+ The response returned by Vuforia which included this error.
298+ """
299+ return self ._response
279300
280301
281302class TargetProcessingTimeout (Exception ):
You can’t perform that action at this time.
0 commit comments