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