Files
MediaManager/media_manager/exceptions.py
2025-06-22 17:41:50 +02:00

17 lines
305 B
Python

class MediaAlreadyExists(ValueError):
"""Raised when a show already exists"""
pass
class NotFoundError(Exception):
"""Custom exception for when an entity is not found."""
pass
class InvalidConfigError(Exception):
"""Custom exception for when an entity is not found."""
pass