6 lines
141 B
Python
6 lines
141 B
Python
class ProviderException(Exception):
|
|
"""If a provider could not return information"""
|
|
|
|
def __str__(self):
|
|
return self.args[0]
|