mirror of
https://github.com/stoatchat/python-client-sdk.git
synced 2026-07-21 01:55:23 -04:00
15 lines
359 B
Python
15 lines
359 B
Python
class RevoltError(Exception):
|
|
"Base exception for revolt"
|
|
|
|
class HTTPError(RevoltError):
|
|
"Base exception for http errors"
|
|
|
|
class ServerError(RevoltError):
|
|
"Internal server error"
|
|
|
|
class FeatureDisabled(RevoltError):
|
|
"""Base class for any any feature disabled"""
|
|
|
|
class AutumnDisabled(FeatureDisabled):
|
|
"""The autumn feature is disabled"""
|