Skip to content

ApiException causes no attribute 'trace_token' exception when trying to print it #177

Open
@jmrodri

Description

@jmrodri

The ApiException class has an optional http_resp parameter. It will then use the alternate construction which does not set the trace_token attribute.

Here is a reproducer:

from docusign_esign import ApiException
e = ApiException(status="status", reason="reason")
print(e)

Here is what I got when running it:

In [1]: from docusign_esign import ApiException

In [2]: e = ApiException(status="status", reason="reason")

In [3]: print(e)
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-3-0c8bf275a22d> in <module>
----> 1 print(e)

~/.pyenv/versions/3.8.14-yardline/lib/python3.8/site-packages/docusign_esign/client/api_exception.py in __str__(self)
     38                         "Reason: {1}\n" \
     39                         "Trace-Token: {2}\n" \
---> 40                         "Timestamp: {3}\n".format(self.status, self.reason, self.trace_token, self.timestamp)
     41         if self.headers:
     42             error_message += "HTTP response headers: {0}\n".format(self.headers)

AttributeError: 'ApiException' object has no attribute 'trace_token'

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions