mirror of
				https://github.com/k4yt3x/video2x.git
				synced 2025-10-31 21:00:58 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			252 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			252 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/usr/bin/env python3
 | |
| # -*- code:utf-8 -*-
 | |
| """
 | |
| 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)
 |