mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-19 16:54:15 +02:00
17 lines
305 B
Python
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
|