mirror of
https://github.com/pacnpal/Pac-cogs.git
synced 2025-12-20 10:51:05 -05:00
10 lines
223 B
Python
10 lines
223 B
Python
"""Exceptions for the utils package"""
|
|
|
|
class FileCleanupError(Exception):
|
|
"""Raised when file cleanup fails"""
|
|
pass
|
|
|
|
class VideoVerificationError(Exception):
|
|
"""Raised when video verification fails"""
|
|
pass
|