Files
MediaManager/media_manager/exceptions.py

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