6 lines
141 B
Python
6 lines
141 B
Python
class DownloaderException(Exception):
|
|
"""If a downloader could not download a URL"""
|
|
|
|
def __str__(self):
|
|
return self.args[0]
|