We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 599d05c commit 43f1d0cCopy full SHA for 43f1d0c
1 file changed
src/cloudevents/core/v1/exceptions.py
@@ -42,6 +42,7 @@ class MissingRequiredAttributeError(BaseCloudEventException, ValueError):
42
"""
43
44
def __init__(self, attribute_name: str) -> None:
45
+ self.attribute_name: str = attribute_name
46
super().__init__(f"Missing required attribute: '{attribute_name}'")
47
48
0 commit comments