video2x/bin/exceptions.py

16 lines
267 B
Python
Raw Normal View History

2018-12-21 23:41:01 +00:00
#!/usr/bin/env python3
# -*- coding: future_fstrings -*-
2019-06-16 21:32:41 +00:00
2018-12-21 23:41:01 +00:00
"""
Name: Video2X Exceptions
Dev: K4YT3X
Date Created: December 13, 2018
2019-03-19 17:07:03 +00:00
Last Modified: March 19, 2019
2018-12-21 23:41:01 +00:00
"""
class ArgumentError(Exception):
def __init__(self, message):
super().__init__(message)