mirror of
https://github.com/kennethreitz/simplemind.git
synced 2026-06-05 22:50:18 +00:00
23 lines
411 B
Python
23 lines
411 B
Python
class SimpleMindError(Exception):
|
|
"""Base exception for SimpleMind errors."""
|
|
|
|
pass
|
|
|
|
|
|
class ProviderError(SimpleMindError):
|
|
"""Raised when there's an error with the AI provider."""
|
|
|
|
pass
|
|
|
|
|
|
class ConfigurationError(SimpleMindError):
|
|
"""Raised when there's a configuration error."""
|
|
|
|
pass
|
|
|
|
|
|
class AuthenticationError(SimpleMindError):
|
|
"""Raised when authentication fails."""
|
|
|
|
pass
|