Skip to content

Commit

Permalink
Merge pull request #2 from bdeboe/main
Browse files Browse the repository at this point in the history
Fix error name typo
  • Loading branch information
daimor authored Oct 24, 2023
2 parents a1371c0 + 969734b commit 6501e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt/adapters/iris/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def open(cls, connection):
connection.handle = dbapi.connect(**kwargs)
connection.state = "open"
except Exception as e:
raise dbt.exceptions.FailedToConnectException(str(e))
raise dbt.exceptions.FailedToConnectError(str(e))

return connection

Expand Down

0 comments on commit 6501e91

Please sign in to comment.