mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-08 06:00:51 -07:00
10 lines
232 B
Python
10 lines
232 B
Python
#!/usr/bin/env python
|
|
|
|
|
|
class TwitterError(Exception):
|
|
"""Base class for Twitter errors"""
|
|
|
|
@property
|
|
def message(self):
|
|
'''Returns the first argument used to construct this error.'''
|
|
return self.args[0]
|