2024-12-26 11:34:24 -05:00

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