mirror of
https://github.com/mirror/wget.git
synced 2025-01-11 21:00:21 +08: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
|