BrickTracker/bricktracker/exceptions.py

24 lines
462 B
Python
Raw Normal View History

2025-01-17 11:03:00 +01:00
# Something was not found
class NotFoundException(Exception):
...
# Generic error exception
class ErrorException(Exception):
title: str = 'Error'
# Configuration error
class ConfigurationMissingException(ErrorException):
title: str = 'Configuration missing'
# Database error
class DatabaseException(ErrorException):
title: str = 'Database error'
# Download error
class DownloadException(ErrorException):
title: str = 'Download error'