mirror of
https://github.com/stoatchat/python-client-sdk.git
synced 2026-07-21 18:15:28 -04:00
9 lines
191 B
Python
9 lines
191 B
Python
class RevoltError(Exception):
|
|
"Base exception for revolt"
|
|
|
|
class HTTPError(RevoltError):
|
|
"Base exception for http errors"
|
|
|
|
class ServerError(RevoltError):
|
|
"Internal server error"
|