mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
8 lines
154 B
Python
8 lines
154 B
Python
|
|
||
|
class TestFailed(Exception):
|
||
|
|
||
|
""" A Custom Exception raised by the Test Environment. """
|
||
|
|
||
|
def __init__ (self, error):
|
||
|
self.error = error
|