toot/toot/exceptions.py

15 wiersze
358 B
Python
Czysty Zwykły widok Historia

2017-12-30 12:32:52 +00:00
class ApiError(Exception):
"""Raised when an API request fails for whatever reason."""
class NotFoundError(ApiError):
"""Raised when an API requests returns a 404."""
class AuthenticationError(ApiError):
"""Raised when login fails."""
class ConsoleError(Exception):
"""Raised when an error occurs which needs to be show to the user."""