You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
deffrom_exception(cls, exc: BaseException, *args, **kwargs) ->"AirbyteTracedException": # type: ignore # ignoring because of args and kwargs
93
+
deffrom_exception(cls, exc: BaseException, stream_descriptor: Optional[StreamDescriptor] =None, *args, **kwargs) ->"AirbyteTracedException": # type: ignore # ignoring because of args and kwargs
88
94
"""
89
95
Helper to create an AirbyteTracedException from an existing exception
90
96
:param exc: the exception that caused the error
97
+
:param stream_descriptor: describe the stream from which the exception comes from
91
98
"""
92
-
returncls(internal_message=str(exc), exception=exc, *args, **kwargs) # type: ignore # ignoring because of args and kwargs
99
+
returncls(internal_message=str(exc), exception=exc, stream_descriptor=stream_descriptor, *args, **kwargs) # type: ignore # ignoring because of args and kwargs
0 commit comments