mirror of
https://github.com/k4yt3x/video2x.git
synced 2025-01-01 10:29:09 +00:00
29 lines
581 B
Python
29 lines
581 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Name: Video2X Exceptions
|
|
Dev: K4YT3X
|
|
Date Created: December 13, 2018
|
|
Last Modified: July 27, 2019
|
|
"""
|
|
|
|
|
|
class ArgumentError(Exception):
|
|
def __init__(self, message):
|
|
super().__init__(message)
|
|
|
|
|
|
class StreamNotFoundError(Exception):
|
|
def __init__(self, message):
|
|
super().__init__(message)
|
|
|
|
|
|
class UnrecognizedDriverError(Exception):
|
|
def __init__(self, message):
|
|
super().__init__(message)
|
|
|
|
|
|
class UnsupportedPixelError(Exception):
|
|
def __init__(self, message):
|
|
super().__init__(message)
|