Skip to content

Commit ed1e60a

Browse files
authored
remove exception inheritance
1 parent 36bb330 commit ed1e60a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

airbyte_cdk/cli/airbyte_cdk/exceptions.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@
33

44
from dataclasses import dataclass
55

6-
from airbyte_cdk.sql.exceptions import AirbyteConnectorError
7-
86

97
@dataclass(kw_only=True)
10-
class ConnectorSecretWithNoValidVersionsError(AirbyteConnectorError):
8+
class ConnectorSecretWithNoValidVersionsError(Exception):
119
"""Error when a connector secret has no valid versions."""
1210

1311
connector_name: str

0 commit comments

Comments
 (0)