Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 999 Bytes

CauseException.md

File metadata and controls

32 lines (23 loc) · 999 Bytes

CauseException

Describes the exception that caused a message.

Properties

Name Type Description Notes
type str
message str
stacktrace List[str]

Example

from waylay.services.queries.models.cause_exception import CauseException

# TODO update the JSON string below
json = "{}"
# create an instance of CauseException from a JSON string
cause_exception_instance = CauseException.from_json(json)
# print the JSON string representation of the object
print CauseException.to_json()

# convert the object into a dict
cause_exception_dict = cause_exception_instance.to_dict()
# create an instance of CauseException from a dict
cause_exception_form_dict = cause_exception.from_dict(cause_exception_dict)

[Back to Model list] [Back to API list] [Back to README]