mirror of
https://github.com/Viren070/MediaFusion.git
synced 2025-12-01 23:21:11 +01:00
6 lines
203 B
Python
6 lines
203 B
Python
class ProviderException(Exception):
|
|
def __init__(self, message, video_file_name):
|
|
self.message = message
|
|
self.video_file_name = video_file_name
|
|
super().__init__(self.message)
|