Files
MediaManager/media_manager/tv/exceptions.py
2025-06-07 13:42:25 +02:00

11 lines
196 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