mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-18 02:54:07 +02:00
11 lines
196 B
Python
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
|