video2x/bin/exceptions.py

14 lines
252 B
Python
Raw Normal View History

2018-12-21 23:41:01 +00:00
#!/usr/bin/env python3
# -*- code:utf-8 -*-
"""
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)