mirror of
https://github.com/james-m-jordan/morphik-core.git
synced 2025-05-09 19:32:38 +00:00
17 lines
272 B
Python
17 lines
272 B
Python
class DataBridgeError(Exception):
|
|
"""Base exception for DataBridge SDK"""
|
|
|
|
pass
|
|
|
|
|
|
class AuthenticationError(DataBridgeError):
|
|
"""Authentication related errors"""
|
|
|
|
pass
|
|
|
|
|
|
class ConnectionError(DataBridgeError):
|
|
"""Connection related errors"""
|
|
|
|
pass
|