video2x/bin/exceptions.py
BrianPetkovsek 9d5ad2f70c make video2x backwards compatible
adds future-fstrings package
transforms the source to .format() format on runtime
2019-06-14 21:43:18 -04:00

14 lines
265 B
Python

#!/usr/bin/env python3
# -*- coding: future_fstrings -*-
"""
Name: Video2X Exceptions
Dev: K4YT3X
Date Created: December 13, 2018
Last Modified: March 19, 2019
"""
class ArgumentError(Exception):
def __init__(self, message):
super().__init__(message)